Luis Rodrigues commited on
Commit
7266825
1 Parent(s): 9d471ed

Updates operational version to use LangChain

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitignore +5 -3
  2. Dockerfile +5 -15
  3. conf/.env.example +16 -0
  4. conf/params.yml +22 -0
  5. data/02_processed/72213138.json +1 -0
  6. data/02_processed/72213138.txt +0 -5
  7. data/02_processed/72268722.json +1 -0
  8. data/02_processed/72268722.txt +0 -15
  9. data/02_processed/72275036.json +1 -0
  10. data/02_processed/72275036.txt +0 -22
  11. data/02_processed/72319191.json +1 -0
  12. data/02_processed/72319191.txt +0 -25
  13. data/02_processed/72339429.json +1 -0
  14. data/02_processed/72339429.txt +0 -32
  15. data/02_processed/72376611.json +1 -0
  16. data/02_processed/72376611.txt +0 -13
  17. data/02_processed/72382969.json +1 -0
  18. data/02_processed/72382969.txt +0 -16
  19. data/02_processed/72412325.json +1 -0
  20. data/02_processed/72412325.txt +0 -25
  21. data/02_processed/72429876.json +1 -0
  22. data/02_processed/72429876.txt +0 -31
  23. data/02_processed/72437781.json +1 -0
  24. data/02_processed/72437781.txt +0 -8
  25. data/02_processed/72540519.json +1 -0
  26. data/02_processed/72540519.txt +0 -27
  27. data/02_processed/72559920.json +1 -0
  28. data/02_processed/72559920.txt +0 -10
  29. data/02_processed/72662959.json +1 -0
  30. data/02_processed/72662959.txt +0 -26
  31. data/02_processed/72666993.json +1 -0
  32. data/02_processed/72666993.txt +0 -26
  33. data/02_processed/72671620.json +1 -0
  34. data/02_processed/72671620.txt +0 -20
  35. data/02_processed/72687269.json +1 -0
  36. data/02_processed/72687269.txt +0 -10
  37. data/02_processed/72693889.json +1 -0
  38. data/02_processed/72693889.txt +0 -25
  39. data/02_processed/72696058.json +1 -0
  40. data/02_processed/72696058.txt +0 -22
  41. data/02_processed/72696072.json +1 -0
  42. data/02_processed/72696072.txt +0 -22
  43. data/02_processed/72696366.json +1 -0
  44. data/02_processed/72696366.txt +0 -9
  45. data/02_processed/72700478.json +1 -0
  46. data/02_processed/72700478.txt +0 -28
  47. data/02_processed/72733305.json +1 -0
  48. data/02_processed/72733305.txt +0 -43
  49. data/02_processed/72736438.json +1 -0
  50. data/02_processed/72736438.txt +0 -15
.gitignore CHANGED
@@ -10,15 +10,16 @@ conf/local/**
10
  conf/**/*credentials*
11
 
12
  # ignore everything in the following folders
13
- #data/**
14
  logs/**
15
 
16
  # except their sub-folders
17
- #!data/**/
18
  !logs/**/
19
 
20
  # also keep the example dataset
21
- #!data/01_raw/*.csv
 
22
 
23
  # also keep all .gitkeep files
24
  !.gitkeep
@@ -144,6 +145,7 @@ celerybeat-schedule
144
 
145
  # Environments
146
  .env
 
147
  .envrc
148
  .venv
149
  env/
 
10
  conf/**/*credentials*
11
 
12
  # ignore everything in the following folders
13
+ data/**
14
  logs/**
15
 
16
  # except their sub-folders
17
+ !data/**/
18
  !logs/**/
19
 
20
  # also keep the example dataset
21
+ !data/01_raw/*.csv
22
+ !data/02_processed/**
23
 
24
  # also keep all .gitkeep files
25
  !.gitkeep
 
145
 
146
  # Environments
147
  .env
148
+ !.env.example
149
  .envrc
150
  .venv
151
  env/
Dockerfile CHANGED
@@ -18,24 +18,14 @@ ENV HF_HOME=$HF_HOME
18
  ARG ENTRYPOINT_PATH="./entrypoint.sh"
19
  ENV ENTRYPOINT_PATH=$ENTRYPOINT_PATH
20
 
21
- # Create the /code/ directory
22
- RUN mkdir -p /code/
23
-
24
- # Explicitly create and set permissions for /root/llmware_data/
25
- RUN mkdir -p /root/llmware_data/ && \
26
- chmod -R 777 /root/llmware_data/
27
-
28
- # Optionally, set the umask to ensure that new files and directories
29
- # created in /code/ have read, write, and execute permissions for everyone.
30
- # Note: This command sets the umask for the shell used in the Dockerfile's
31
- # RUN command, but it might not affect the umask of the shell in the running container.
32
- # For a more persistent approach, you might need to set the umask in the container's entrypoint script.
33
- RUN echo "umask 000" >> /etc/bash.bashrc
34
 
35
  # Set the working directory to /code/
36
  WORKDIR /code
37
 
38
- # Create a virtual environment in the directory /code/venv
39
  RUN python -m venv venv
40
 
41
  # Activate the virtual environment by adding it to the PATH environment variable
@@ -57,7 +47,7 @@ RUN mkdir -p $HF_HOME && \
57
  COPY . .
58
 
59
  RUN pip install -e . && \
60
- python src/resume_worth/pipelines/data_indexing/data_indexing.py && \
61
  chmod +x $ENTRYPOINT_PATH
62
 
63
  ENTRYPOINT $ENTRYPOINT_PATH
 
18
  ARG ENTRYPOINT_PATH="./entrypoint.sh"
19
  ENV ENTRYPOINT_PATH=$ENTRYPOINT_PATH
20
 
21
+ # Create the /code/ directory a ser permissions rwe
22
+ RUN mkdir -p /code/&& \
23
+ chmod -R 777 /code/
 
 
 
 
 
 
 
 
 
 
24
 
25
  # Set the working directory to /code/
26
  WORKDIR /code
27
 
28
+ # Create a virtual environment in the directory /venv
29
  RUN python -m venv venv
30
 
31
  # Activate the virtual environment by adding it to the PATH environment variable
 
47
  COPY . .
48
 
49
  RUN pip install -e . && \
50
+ python src/resume_worth/pipelines/data_indexing/pipeline.py && \
51
  chmod +x $ENTRYPOINT_PATH
52
 
53
  ENTRYPOINT $ENTRYPOINT_PATH
conf/.env.example ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OpenAI (to text generation)
2
+ OPENAI_API_KEY=""
3
+ OPENAI_ORG_ID=""
4
+
5
+ # Gretel (to generate synthetic evaluation data)
6
+ GRETEL_API_KEY=""
7
+
8
+ # Mlflow (to save experiment tracking on cloud)
9
+ MLFLOW_TRACKING_USERNAME=""
10
+ MLFLOW_TRACKING_PASSWORD=""
11
+ MLFLOW_TRACKING_URI=""
12
+ AZURE_STORAGE_CONNECTION_STRING=""
13
+
14
+ # Tonic Validate (to visualize RAGAS results)
15
+ TONIC_VALIDATE_API_KEY=""
16
+ TONIC_VALIDATE_PROJECT_ID=""
conf/params.yml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Data
2
+ ingestion_data_dir: ["data", "02_processed"]
3
+ ingestion_metadata_dir: ["data", "02_processed", "metadata"]
4
+
5
+ # Embeddings
6
+ embedding_model_name: "sentence-transformers/all-mpnet-base-v2"
7
+ embedding_dir: ["data", "03_indexed"]
8
+
9
+ # app
10
+ APP_TITLE: "ResumeWorth"
11
+ APP_DESCRIPTION: |
12
+ Discover Your Market Value!
13
+
14
+ Unlock the true value of your experience with ResumeWorth.
15
+
16
+ Simply enter your job title, upload your resume, and let our advanced AI analyze your professional background.
17
+
18
+ In moments, you'll receive an estimated salary, tailored to your unique skills and experience.
19
+ # Empower your job search with insights that put you a step ahead.
20
+ JOB_TITLES: ["Data Engineer", "Data Scientist", "Data Analyst", "Machine Learning Engineer"]
21
+ HOST: "0.0.0.0"
22
+ PORT: 7860
data/02_processed/72213138.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72213138, "location": "selangor", "company": "synergy house furniture sdn bhd - location at top glove tower, setia alam", "job_title": "e-commerce data analyst", "salary": "RM\u00a02,800 \u2013 RM\u00a03,500 per month", "description": "How many years' experience do you have as a data analyst?"}
data/02_processed/72213138.txt DELETED
@@ -1,5 +0,0 @@
1
- LOCATION: Selangor
2
- COMPANY: Synergy House Furniture Sdn Bhd - Location at Top Glove Tower, Setia Alam
3
- JOB TITLE: E-commerce Data Analyst
4
- SALARY: RM 2,800 – RM 3,500 per month
5
- DESCRIPTION: How many years' experience do you have as a data analyst?
 
 
 
 
 
 
data/02_processed/72268722.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72268722, "location": "selangor", "company": "agensi pekerjaan hays (malaysia) sdn bhd", "job_title": "data engineer", "salary": "RM\u00a07,000 \u2013 RM\u00a013,000 per month", "description": "Develop strategies for managing data and optimising database schemas to ensure data privacy and security across BI tools and processes.\nContinuously improve the data warehouse, BI processes, and system performance to meet business needs and accommodate growing data volumes.\nDesign, build, and maintain data systems and pipelines.\nManage scheduled data ingestion and processing operations, train stakeholders on BI tools use, and leverage innovative technologies and machine learning techniques for sophisticated data analysis and continuous improvement.\n3+ years of experience in data engineering or a related field.\nProficient in SQL, PLSQL, Stored Procedures, and Scripting.\nFamiliarity with ETL/ELT tools such as Azure Data Factory, Oracle Data Integrator, etc.\nExperience with Python, R, or other relevant scripting languages that are often used in data manipulation and acquisition.\nAttractive remuneration package and development opportunities.\nEnjoy a dynamic and stimulating, fast-paced environment with a team of bright professionals supporting you.\nFlexible work arrangements such as remote work or flexible hours."}
data/02_processed/72268722.txt DELETED
@@ -1,15 +0,0 @@
1
- LOCATION: Selangor
2
- COMPANY: Agensi Pekerjaan Hays (Malaysia) Sdn Bhd
3
- JOB TITLE: Data Engineer
4
- SALARY: RM 7,000 – RM 13,000 per month
5
- DESCRIPTION: Develop strategies for managing data and optimising database schemas to ensure data privacy and security across BI tools and processes.
6
- Continuously improve the data warehouse, BI processes, and system performance to meet business needs and accommodate growing data volumes.
7
- Design, build, and maintain data systems and pipelines.
8
- Manage scheduled data ingestion and processing operations, train stakeholders on BI tools use, and leverage innovative technologies and machine learning techniques for sophisticated data analysis and continuous improvement.
9
- 3+ years of experience in data engineering or a related field.
10
- Proficient in SQL, PLSQL, Stored Procedures, and Scripting.
11
- Familiarity with ETL/ELT tools such as Azure Data Factory, Oracle Data Integrator, etc.
12
- Experience with Python, R, or other relevant scripting languages that are often used in data manipulation and acquisition.
13
- Attractive remuneration package and development opportunities.
14
- Enjoy a dynamic and stimulating, fast-paced environment with a team of bright professionals supporting you.
15
- Flexible work arrangements such as remote work or flexible hours.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72275036.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72275036, "location": "shah alam/subang", "company": "smartlink engineering sdn bhd", "job_title": "erp system analyst", "salary": "RM\u00a04,000 \u2013 RM\u00a06,000 per month", "description": "Ensure timely development and ongoing maintenance of Company-wide ERP system completely.\nAssist projects related to Company\u2019s ERP and product support.\nExtract data, report creation and analyze system for ERP solutions.\nImplement ERP process to increase efficiencies.\nReport writing and query creation in relation to ERP source system data.\nIdentify continuous improvement opportunities for assigned systems and processes.\nUpdate and manage ERP application system documentation.\nPrepare process and user training documentation for ERP system implementation.\nInteract with software vendor on issues requiring technical assistance requests for ERP systems.\nUndertake ad-hoc assignments when required.\nMust possess at least a diploma in Computer Science, IT, Engineering, or related field\nMinimum 2 years related working experience, prefer in manufacturing environment\nStrong analytical and problem-solving skills: ability to draw insights from data, research, and design practical and scalable solutions.\nInitiate and drive projects together with product owners and software teams.\nSelf-motivated, good interpersonal and communication with all levels of people\nExcellent on documentation, management, information analysis\nMust be organized, work gracefully under pressure and switch between projects seamlessly in a fast-paced environment\nHow many years' experience do you have as a systems analyst?"}
data/02_processed/72275036.txt DELETED
@@ -1,22 +0,0 @@
1
- LOCATION: Shah Alam/Subang
2
- COMPANY: Smartlink Engineering Sdn Bhd
3
- JOB TITLE: ERP System Analyst
4
- SALARY: RM 4,000 – RM 6,000 per month
5
- DESCRIPTION: Ensure timely development and ongoing maintenance of Company-wide ERP system completely.
6
- Assist projects related to Company’s ERP and product support.
7
- Extract data, report creation and analyze system for ERP solutions.
8
- Implement ERP process to increase efficiencies.
9
- Report writing and query creation in relation to ERP source system data.
10
- Identify continuous improvement opportunities for assigned systems and processes.
11
- Update and manage ERP application system documentation.
12
- Prepare process and user training documentation for ERP system implementation.
13
- Interact with software vendor on issues requiring technical assistance requests for ERP systems.
14
- Undertake ad-hoc assignments when required.
15
- Must possess at least a diploma in Computer Science, IT, Engineering, or related field
16
- Minimum 2 years related working experience, prefer in manufacturing environment
17
- Strong analytical and problem-solving skills: ability to draw insights from data, research, and design practical and scalable solutions.
18
- Initiate and drive projects together with product owners and software teams.
19
- Self-motivated, good interpersonal and communication with all levels of people
20
- Excellent on documentation, management, information analysis
21
- Must be organized, work gracefully under pressure and switch between projects seamlessly in a fast-paced environment
22
- How many years' experience do you have as a systems analyst?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72319191.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72319191, "location": "petaling", "company": "netmedias leashares sdn. bhd.", "job_title": "data analyst", "salary": "RM\u00a03,500 \u2013 RM\u00a04,000 per month", "description": "Looking for an opportunity to work in international markets?\nLooking for a company to unleash your potential and ability?\nLooking for a place that recognize your work performance?\nYou are a self-drive person.\nProactive, result-oriented and positive mindset.\nFree parking\nMeal allowance.\n5 minutes walking distance to MRT station (Phileo Damansara).\nTo interpret data, analyse the results by using statistical techniques and provide ongoing statistical reports.\nTo develop and implement databases, data analytics and collection systems, and other strategies that optimize statistical data quality.\nTo acquire data from primary or secondary data sources which includes collecting data from various sources such as internal databases, external, surveys, market research reports, and other relevant sources and maintain databases/data systems.\nTo identify, analyse, and interpret data trends or patterns in complex data sets which ensure the data accuracy, completeness, and consistency.\nTo filter and \u201cclean\u201d data by reviewing computer reports, printouts, and performance indicators to locate and correct code problems\nTo work with management to prioritize business and information needs.\nTo stay updated with industry trends and best practices in data analysis and reporting.\nCandidate must possess at least bachelor's degree in Statistics, Mathematics, Computer Science, or its equivalent.\nProven experience as a Data Analyst or in a related field.\nTechnical expertise regarding data models, database design development, data mining, and segmentation techniques.\nStrong in analytical skills with the ability to collect, organize, analyse, and disseminate significant amounts of information with attention to details and accuracy.\nFresh graduates are welcomed to apply.\nWhich of the following web analytics tools are you experienced with?"}
data/02_processed/72319191.txt DELETED
@@ -1,25 +0,0 @@
1
- LOCATION: Petaling
2
- COMPANY: NETMEDIAS LEASHARES SDN. BHD.
3
- JOB TITLE: Data Analyst
4
- SALARY: RM 3,500 – RM 4,000 per month
5
- DESCRIPTION: Looking for an opportunity to work in international markets?
6
- Looking for a company to unleash your potential and ability?
7
- Looking for a place that recognize your work performance?
8
- You are a self-drive person.
9
- Proactive, result-oriented and positive mindset.
10
- Free parking
11
- Meal allowance.
12
- 5 minutes walking distance to MRT station (Phileo Damansara).
13
- To interpret data, analyse the results by using statistical techniques and provide ongoing statistical reports.
14
- To develop and implement databases, data analytics and collection systems, and other strategies that optimize statistical data quality.
15
- To acquire data from primary or secondary data sources which includes collecting data from various sources such as internal databases, external, surveys, market research reports, and other relevant sources and maintain databases/data systems.
16
- To identify, analyse, and interpret data trends or patterns in complex data sets which ensure the data accuracy, completeness, and consistency.
17
- To filter and “clean” data by reviewing computer reports, printouts, and performance indicators to locate and correct code problems
18
- To work with management to prioritize business and information needs.
19
- To stay updated with industry trends and best practices in data analysis and reporting.
20
- Candidate must possess at least bachelor's degree in Statistics, Mathematics, Computer Science, or its equivalent.
21
- Proven experience as a Data Analyst or in a related field.
22
- Technical expertise regarding data models, database design development, data mining, and segmentation techniques.
23
- Strong in analytical skills with the ability to collect, organize, analyse, and disseminate significant amounts of information with attention to details and accuracy.
24
- Fresh graduates are welcomed to apply.
25
- Which of the following web analytics tools are you experienced with?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72339429.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72339429, "location": "shah alam/subang", "company": "zuspresso (m) sdn bhd", "job_title": "data engineer", "salary": "RM\u00a08,000 \u2013 RM\u00a012,000 per month", "description": "Design and Develop Data Pipelines: Create and maintain efficient, reliable, and scalable data pipelines that extract, transform, and load (ETL) data from diverse sources into AWS data storage systems.\nData Modeling and Architecture: Design and implement data models for data warehousing and data lakes on AWS, ensuring data integrity, performance, and scalability.\nAWS Cloud Infrastructure: Utilize various AWS services such as Amazon S3, Amazon Redshift, AWS Glue, Amazon EMR, Amazon RDS, and others to build data solutions.\nData Transformation and Processing: Develop data transformation processes, including data cleansing, enrichment, and aggregation, to ensure data accuracy and consistency.\nPerformance Optimization: Identify and implement performance optimization techniques to enhance data processing speed and reduce latency in data pipelines.\nData Security and Compliance: Ensure that data handling practices comply with relevant data security and privacy regulations. Implement security measures to protect sensitive data.\nMonitoring and Troubleshooting: Monitor data pipelines, data jobs, and data storage systems for issues and troubleshoot any data-related problems to ensure smooth data flow.\nDocumentation: Create and maintain technical documentation for data engineering processes, data models, and data pipelines.\nCollaboration and Communication: Work closely with data scientists, analysts, and other stakeholders to understand data requirements and deliver data solutions that meet business needs.\nContinuous Improvement: Stay updated with the latest AWS services and data engineering best practices to propose and implement improvements to the existing data infrastructure.\nBachelor's degree in Computer Science, Engineering, or a related field. A Master's degree is a plus.\nProven experience as a Data Engineer/Architect for at least 3 years, specifically working with AWS data services and related technologies.\nStrong knowledge of AWS services such as Amazon S3, Amazon Redshift, AWS Glue, Amazon EMR, Amazon RDS, and others.\nProficiency in programming languages such as Python, SQL, and familiarity with data manipulation frameworks/libraries.\nHands-on experience with data modeling, data warehousing concepts, and building data pipelines using ETL tools.\nFamiliarity with data governance, data security, and data privacy best practices.\nExcellent problem-solving skills and the ability to work independently as well as part of a team.\nStrong communication skills to effectively collaborate with cross-functional teams and convey technical concepts to non-technical stakeholders.\nExcellent problem-solving skills and the ability to work independently as well as part of a team.\nStrong communication skills to effectively collaborate with cross-functional teams and convey technical concepts to non-technical stakeholders.\nAWS Certified Data Analytics - Specialty or similar certifications.\nExperience with server less computing, containerization, and microservices architecture on AWS.\nKnowledge of data streaming platforms and technologies such as Apache Kafka or Amazon Kinesis.\nExperience in handling unstructured data and NoSQL databases on AWS.\nFamiliarity with machine learning concepts and applying machine learning models to data processing tasks.\n\u00a0\nHow many years' experience do you have as a Data Engineer?\nWhich of the following programming languages are you experienced in?"}
data/02_processed/72339429.txt DELETED
@@ -1,32 +0,0 @@
1
- LOCATION: Shah Alam/Subang
2
- COMPANY: Zuspresso (M) Sdn Bhd
3
- JOB TITLE: Data Engineer
4
- SALARY: RM 8,000 – RM 12,000 per month
5
- DESCRIPTION: Design and Develop Data Pipelines: Create and maintain efficient, reliable, and scalable data pipelines that extract, transform, and load (ETL) data from diverse sources into AWS data storage systems.
6
- Data Modeling and Architecture: Design and implement data models for data warehousing and data lakes on AWS, ensuring data integrity, performance, and scalability.
7
- AWS Cloud Infrastructure: Utilize various AWS services such as Amazon S3, Amazon Redshift, AWS Glue, Amazon EMR, Amazon RDS, and others to build data solutions.
8
- Data Transformation and Processing: Develop data transformation processes, including data cleansing, enrichment, and aggregation, to ensure data accuracy and consistency.
9
- Performance Optimization: Identify and implement performance optimization techniques to enhance data processing speed and reduce latency in data pipelines.
10
- Data Security and Compliance: Ensure that data handling practices comply with relevant data security and privacy regulations. Implement security measures to protect sensitive data.
11
- Monitoring and Troubleshooting: Monitor data pipelines, data jobs, and data storage systems for issues and troubleshoot any data-related problems to ensure smooth data flow.
12
- Documentation: Create and maintain technical documentation for data engineering processes, data models, and data pipelines.
13
- Collaboration and Communication: Work closely with data scientists, analysts, and other stakeholders to understand data requirements and deliver data solutions that meet business needs.
14
- Continuous Improvement: Stay updated with the latest AWS services and data engineering best practices to propose and implement improvements to the existing data infrastructure.
15
- Bachelor's degree in Computer Science, Engineering, or a related field. A Master's degree is a plus.
16
- Proven experience as a Data Engineer/Architect for at least 3 years, specifically working with AWS data services and related technologies.
17
- Strong knowledge of AWS services such as Amazon S3, Amazon Redshift, AWS Glue, Amazon EMR, Amazon RDS, and others.
18
- Proficiency in programming languages such as Python, SQL, and familiarity with data manipulation frameworks/libraries.
19
- Hands-on experience with data modeling, data warehousing concepts, and building data pipelines using ETL tools.
20
- Familiarity with data governance, data security, and data privacy best practices.
21
- Excellent problem-solving skills and the ability to work independently as well as part of a team.
22
- Strong communication skills to effectively collaborate with cross-functional teams and convey technical concepts to non-technical stakeholders.
23
- Excellent problem-solving skills and the ability to work independently as well as part of a team.
24
- Strong communication skills to effectively collaborate with cross-functional teams and convey technical concepts to non-technical stakeholders.
25
- AWS Certified Data Analytics - Specialty or similar certifications.
26
- Experience with server less computing, containerization, and microservices architecture on AWS.
27
- Knowledge of data streaming platforms and technologies such as Apache Kafka or Amazon Kinesis.
28
- Experience in handling unstructured data and NoSQL databases on AWS.
29
- Familiarity with machine learning concepts and applying machine learning models to data processing tasks.
30
-  
31
- How many years' experience do you have as a Data Engineer?
32
- Which of the following programming languages are you experienced in?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72376611.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72376611, "location": "kuala lumpur", "company": "agensi pekerjaan hays (malaysia) sdn bhd", "job_title": "head of advanced data analytics", "salary": "RM\u00a020,000 \u2013 RM\u00a030,000 per month", "description": "Being the point-of-contact for advanced analytics / data science related matters and promoting awareness of advanced analytics / data science use cases to support business objectives and goals.\nOversee design, development and implementation of advanced analytics / data science solutions.\nOversee the development of the overall finance technology landscape and implementation strategy to enable data consumption and advanced analytics / data science solutions.\nDemonstrable experience leading teams to develop advanced analytics / data science solutions.\nProficiency in SQL, Python and/or R.\nExperience using Microsoft Power Tools i.e. PowerApps, Power BI, Power Automate are desirable.\nUnderstanding of finance & accounting terms is desirable.\nThe opportunity to work for a market leader and be part of a pioneering team.\nAttractive development opportunities alongside a competitive remuneration package."}
data/02_processed/72376611.txt DELETED
@@ -1,13 +0,0 @@
1
- LOCATION: Kuala Lumpur
2
- COMPANY: Agensi Pekerjaan Hays (Malaysia) Sdn Bhd
3
- JOB TITLE: Head of Advanced Data Analytics
4
- SALARY: RM 20,000 – RM 30,000 per month
5
- DESCRIPTION: Being the point-of-contact for advanced analytics / data science related matters and promoting awareness of advanced analytics / data science use cases to support business objectives and goals.
6
- Oversee design, development and implementation of advanced analytics / data science solutions.
7
- Oversee the development of the overall finance technology landscape and implementation strategy to enable data consumption and advanced analytics / data science solutions.
8
- Demonstrable experience leading teams to develop advanced analytics / data science solutions.
9
- Proficiency in SQL, Python and/or R.
10
- Experience using Microsoft Power Tools i.e. PowerApps, Power BI, Power Automate are desirable.
11
- Understanding of finance & accounting terms is desirable.
12
- The opportunity to work for a market leader and be part of a pioneering team.
13
- Attractive development opportunities alongside a competitive remuneration package.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72382969.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72382969, "location": "kuala lumpur", "company": "footfallcam", "job_title": "machine learning engineer (artificial intelligence)", "salary": "RM\u00a04,000 \u2013 RM\u00a06,000 per month", "description": "Design, develop, and deploy machine learning models and algorithms for complex and unique datasets, using various techniques such as mathematical modeling, scikit-learn, NLP, CNN, RNN, DL, RL, Transformers, GAN, LLM, RAG\nCollaborate with cross-functional teams to extract insights, identify business opportunities and provide data-driven recommendations\nStay up-to-date with the latest machine learning and AI techniques and tools\nCommunicate complex technical concepts to non-technical stakeholders in an easy-to-understand manner\nBachelor's degree or higher in Computer Science, Mathematics, Statistics, Actuarial Science, Informatics, Information Science or related fields\nStrong analytical skills and attention to detail\nParticipation in Kaggle, Mathematics Olympiad or similar competitions is a plus\nExcellent programming skills in Python, R, Java, or C++\nFamiliar with ML frameworks such as Tensorflow, Keras, PyTorch, MLFlow, AutoML, TensorRT, CUDA\nExcellent communication and collaboration skills\nExperience with designing, training, and deploying machine learning models\nCustomer centric and committed to deliver the best AI results to customers"}
data/02_processed/72382969.txt DELETED
@@ -1,16 +0,0 @@
1
- LOCATION: Kuala Lumpur
2
- COMPANY: FootfallCam
3
- JOB TITLE: Machine Learning Engineer (Artificial Intelligence)
4
- SALARY: RM 4,000 – RM 6,000 per month
5
- DESCRIPTION: Design, develop, and deploy machine learning models and algorithms for complex and unique datasets, using various techniques such as mathematical modeling, scikit-learn, NLP, CNN, RNN, DL, RL, Transformers, GAN, LLM, RAG
6
- Collaborate with cross-functional teams to extract insights, identify business opportunities and provide data-driven recommendations
7
- Stay up-to-date with the latest machine learning and AI techniques and tools
8
- Communicate complex technical concepts to non-technical stakeholders in an easy-to-understand manner
9
- Bachelor's degree or higher in Computer Science, Mathematics, Statistics, Actuarial Science, Informatics, Information Science or related fields
10
- Strong analytical skills and attention to detail
11
- Participation in Kaggle, Mathematics Olympiad or similar competitions is a plus
12
- Excellent programming skills in Python, R, Java, or C++
13
- Familiar with ML frameworks such as Tensorflow, Keras, PyTorch, MLFlow, AutoML, TensorRT, CUDA
14
- Excellent communication and collaboration skills
15
- Experience with designing, training, and deploying machine learning models
16
- Customer centric and committed to deliver the best AI results to customers
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72412325.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72412325, "location": "shah alam/subang", "company": "monkeycloud media sdn. bhd.", "job_title": "junior data analyst", "salary": "RM\u00a03,000 \u2013 RM\u00a04,000 per month", "description": "Collect and compile data from different sources, including databases, and spreadsheets.\nFiltering and cleaning data to ensure accuracy.\nAnalyze data to identify trends, patterns, and anomalies, and provide actionable insights to support in various team decision-making.\nDevelop and maintain dashboards and reports to track key project performance metrics, including progress and target achievement.\nConduct ad-hoc data analysis to address specific project management questions or issues.\nAssist in the preparation of presentations and reports for project status updates and executive-level reporting.\nDiploma or Degree in any related field\nExperience in data analysis, business analysis or similar role, with a strong focus on data manipulation and analysis is preferred.\nFamiliarity with data analysis tools and concepts, with experience in Power BI being a strong advantage.\n2-3 years working experience as a Business Intelligence Analyst/Data Analyst or any position that related to data and business analytics with strong statistical background.\nPreferably with prior experience in the FMCG industry.\nExperience in data analysis, business analysis or similar role, with a strong focus on data manipulation and analysis is preferred.\nProficiency in data analysis tools and software, such as Power BI, Microsoft Excel (Pivot, Macro) or similar tools.\nStrong organizational skills and the ability to manage multiple tasks and priorities simultaneously.\nA collaborative and team-oriented mindset with the ability to work effectively in a cross-functional environment.\nExcellent communication and presentation skills, with the ability to convey complex information clearly and effectively.\nStrong analytical and problem-solving skills, with the ability to translate data into actionable insights.\nHow many years' experience do you have as a data analyst?\nHow many years' experience do you have as a Power BI Consultant?\nHow would you rate your Mandarin language skills?\nWhich of the following data analytics tools are you experienced with?"}
data/02_processed/72412325.txt DELETED
@@ -1,25 +0,0 @@
1
- LOCATION: Shah Alam/Subang
2
- COMPANY: MONKEYCLOUD MEDIA SDN. BHD.
3
- JOB TITLE: Junior Data Analyst
4
- SALARY: RM 3,000 – RM 4,000 per month
5
- DESCRIPTION: Collect and compile data from different sources, including databases, and spreadsheets.
6
- Filtering and cleaning data to ensure accuracy.
7
- Analyze data to identify trends, patterns, and anomalies, and provide actionable insights to support in various team decision-making.
8
- Develop and maintain dashboards and reports to track key project performance metrics, including progress and target achievement.
9
- Conduct ad-hoc data analysis to address specific project management questions or issues.
10
- Assist in the preparation of presentations and reports for project status updates and executive-level reporting.
11
- Diploma or Degree in any related field
12
- Experience in data analysis, business analysis or similar role, with a strong focus on data manipulation and analysis is preferred.
13
- Familiarity with data analysis tools and concepts, with experience in Power BI being a strong advantage.
14
- 2-3 years working experience as a Business Intelligence Analyst/Data Analyst or any position that related to data and business analytics with strong statistical background.
15
- Preferably with prior experience in the FMCG industry.
16
- Experience in data analysis, business analysis or similar role, with a strong focus on data manipulation and analysis is preferred.
17
- Proficiency in data analysis tools and software, such as Power BI, Microsoft Excel (Pivot, Macro) or similar tools.
18
- Strong organizational skills and the ability to manage multiple tasks and priorities simultaneously.
19
- A collaborative and team-oriented mindset with the ability to work effectively in a cross-functional environment.
20
- Excellent communication and presentation skills, with the ability to convey complex information clearly and effectively.
21
- Strong analytical and problem-solving skills, with the ability to translate data into actionable insights.
22
- How many years' experience do you have as a data analyst?
23
- How many years' experience do you have as a Power BI Consultant?
24
- How would you rate your Mandarin language skills?
25
- Which of the following data analytics tools are you experienced with?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72429876.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72429876, "location": "shah alam/subang", "company": "pwm (pet world international sdn bhd)", "job_title": "data analyst", "salary": "RM\u00a04,500 \u2013 RM\u00a06,000 per month", "description": "Analyze & identify trends across the online customer journey, providing insight & recommendations to drive additional traffic & sales over eCommerce platforms\nUtilize multiple data sources and turn different data streams into a cohesive view of our customer to produce detailed digital business insights & analysis\nEnsure the tracking of A/B & MV testing scenarios in partnership with the eCommerce Coordinator\nContinuously track and optimize online acquisition campaigns in partnership with the Acquisition Coordinator\nEnsure all eBusiness activities & KPIs are tracked and aligned with CRM team\nProvide detailed analysis of path to registration and path to purchase to improve conversion funnel\nProvide detailed analysis of merchandizing zones performance to refine understanding of winning combinations (menu/pages/section/placement/creative)\nDeliver reports dashboards to monitor the digital performance of the eChannel\nSetup & maintain daily eCommerce KPI reports\nProduce Monthly/Quarterly/Annual eBusiness KPI dashboards with associated insights\nAnalyses & identify trends cross channels and deliver reports to monitor the performance\nProduce regular reporting and periodic research from both offline and online channels\nDefine & Identify opportunities between cross-channels\nProduce Monthly/Quarterly/Annual finding with associated insights\nMaintain & adjust the forecasting based on actual results & key learnings throughout the year\nPossess at least a Bachelor\u2019s degree or equivalent\nAt least 2 years of experience with web/mobile analytics, metrics gathering, reporting and analysis;\nExperience with eCommerce analytics, experience with Google Analytics is a must;\nProficient with PowerPoint to build impactful presentation.\nAdvanced proficiency with Excel, including ability to generate complex data and analysis to provide recommendation;\nApply expertise in quantitative and qualitative analysis to generate presentation with actionable insight and recommendation leveraging Customer data, Site-centric data, BI data and any relevant contextual data\nBackground and knowledge of E-commerce and online Marketplace Management\nWhat's your expected monthly basic salary?\nHow many years' experience do you have as a data analyst?\nWhich of the following programming languages are you experienced in?\nWhich of the following web analytics tools are you experienced with?\nHave you worked in a role which requires a sound understanding of the software development lifecycle?"}
data/02_processed/72429876.txt DELETED
@@ -1,31 +0,0 @@
1
- LOCATION: Shah Alam/Subang
2
- COMPANY: PWM (PET WORLD INTERNATIONAL SDN BHD)
3
- JOB TITLE: Data Analyst
4
- SALARY: RM 4,500 – RM 6,000 per month
5
- DESCRIPTION: Analyze & identify trends across the online customer journey, providing insight & recommendations to drive additional traffic & sales over eCommerce platforms
6
- Utilize multiple data sources and turn different data streams into a cohesive view of our customer to produce detailed digital business insights & analysis
7
- Ensure the tracking of A/B & MV testing scenarios in partnership with the eCommerce Coordinator
8
- Continuously track and optimize online acquisition campaigns in partnership with the Acquisition Coordinator
9
- Ensure all eBusiness activities & KPIs are tracked and aligned with CRM team
10
- Provide detailed analysis of path to registration and path to purchase to improve conversion funnel
11
- Provide detailed analysis of merchandizing zones performance to refine understanding of winning combinations (menu/pages/section/placement/creative)
12
- Deliver reports dashboards to monitor the digital performance of the eChannel
13
- Setup & maintain daily eCommerce KPI reports
14
- Produce Monthly/Quarterly/Annual eBusiness KPI dashboards with associated insights
15
- Analyses & identify trends cross channels and deliver reports to monitor the performance
16
- Produce regular reporting and periodic research from both offline and online channels
17
- Define & Identify opportunities between cross-channels
18
- Produce Monthly/Quarterly/Annual finding with associated insights
19
- Maintain & adjust the forecasting based on actual results & key learnings throughout the year
20
- Possess at least a Bachelor’s degree or equivalent
21
- At least 2 years of experience with web/mobile analytics, metrics gathering, reporting and analysis;
22
- Experience with eCommerce analytics, experience with Google Analytics is a must;
23
- Proficient with PowerPoint to build impactful presentation.
24
- Advanced proficiency with Excel, including ability to generate complex data and analysis to provide recommendation;
25
- Apply expertise in quantitative and qualitative analysis to generate presentation with actionable insight and recommendation leveraging Customer data, Site-centric data, BI data and any relevant contextual data
26
- Background and knowledge of E-commerce and online Marketplace Management
27
- What's your expected monthly basic salary?
28
- How many years' experience do you have as a data analyst?
29
- Which of the following programming languages are you experienced in?
30
- Which of the following web analytics tools are you experienced with?
31
- Have you worked in a role which requires a sound understanding of the software development lifecycle?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72437781.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72437781, "location": "kajang/bangi/serdang", "company": "national institutes of biotechnology malaysia (nibm)", "job_title": "scientist (bioinformatics)", "salary": "RM\u00a05,700 \u2013 RM\u00a07,000 per month", "description": "Which of the following statements best describes your right to work in Malaysia?\nWhat's your expected monthly basic salary?\nHow many years' experience do you have as a Scientist?\nHow much notice are you required to give your current employer?"}
data/02_processed/72437781.txt DELETED
@@ -1,8 +0,0 @@
1
- LOCATION: Kajang/Bangi/Serdang
2
- COMPANY: National Institutes of Biotechnology Malaysia (NIBM)
3
- JOB TITLE: Scientist (Bioinformatics)
4
- SALARY: RM 5,700 – RM 7,000 per month
5
- DESCRIPTION: Which of the following statements best describes your right to work in Malaysia?
6
- What's your expected monthly basic salary?
7
- How many years' experience do you have as a Scientist?
8
- How much notice are you required to give your current employer?
 
 
 
 
 
 
 
 
 
data/02_processed/72540519.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72540519, "location": "petaling", "company": "global parcel service (m) sdn bhd", "job_title": "data analyst", "salary": "RM\u00a03,500 \u2013 RM\u00a05,000 per month", "description": "Growth opportunities\nInternational vision\nPromising career development\n\u00a0Develop and automate dashboards, analyses, and reports to support business functions.\u00a0\n\u00a0Collaborate with stakeholders in Operations and Sales to make data-driven decisions.\u00a0\n\u00a0Create pipelines and queries in the data warehouse. Maintain the integrity of the data as the \"single source of truth\"\nCoding skills: Basic knowledge of programming languages such as Stata, SQL, R studio, C++ , for logistics jobs that involve data analysis, automation, and optimization.\nData analysis skills: The ability to analyze large datasets, identify patterns, and extract insights is essential for logistics jobs that involve forecasting, planning, and decision-making.\nCommunication skills: Logistics professionals need to communicate effectively with team members to ensure that results are delivered in a timely manner.\nProblem-solving skills: Logistics professionals need to be able to identify and solve problems quickly and efficiently to minimize delays.\nAttention to detail: Logistics professionals need to be detail-oriented to ensure that shipments are accurate, complete, and compliant with regulations.\nCandidates with prior work experience in relevant fields are preferred.\nExcellent communication and interpersonal skills.\nAble to work well with cross-functional teams.\nStrong problem-solving skills.\nWhich of the following statements best describes your right to work in Malaysia?\nWhat's your expected monthly basic salary?\nHow many years' experience do you have as a data analyst?\nWhich of the following Microsoft Office products are you experienced with?\nHow would you rate your English language skills?\nWhich of the following languages are you fluent in?\nAre you willing to undergo a pre-employment background check?\nHow much notice are you required to give your current employer?"}
data/02_processed/72540519.txt DELETED
@@ -1,27 +0,0 @@
1
- LOCATION: Petaling
2
- COMPANY: Global Parcel Service (M) Sdn Bhd
3
- JOB TITLE: Data Analyst
4
- SALARY: RM 3,500 – RM 5,000 per month
5
- DESCRIPTION: Growth opportunities
6
- International vision
7
- Promising career development
8
-  Develop and automate dashboards, analyses, and reports to support business functions. 
9
-  Collaborate with stakeholders in Operations and Sales to make data-driven decisions. 
10
-  Create pipelines and queries in the data warehouse. Maintain the integrity of the data as the "single source of truth"
11
- Coding skills: Basic knowledge of programming languages such as Stata, SQL, R studio, C++ , for logistics jobs that involve data analysis, automation, and optimization.
12
- Data analysis skills: The ability to analyze large datasets, identify patterns, and extract insights is essential for logistics jobs that involve forecasting, planning, and decision-making.
13
- Communication skills: Logistics professionals need to communicate effectively with team members to ensure that results are delivered in a timely manner.
14
- Problem-solving skills: Logistics professionals need to be able to identify and solve problems quickly and efficiently to minimize delays.
15
- Attention to detail: Logistics professionals need to be detail-oriented to ensure that shipments are accurate, complete, and compliant with regulations.
16
- Candidates with prior work experience in relevant fields are preferred.
17
- Excellent communication and interpersonal skills.
18
- Able to work well with cross-functional teams.
19
- Strong problem-solving skills.
20
- Which of the following statements best describes your right to work in Malaysia?
21
- What's your expected monthly basic salary?
22
- How many years' experience do you have as a data analyst?
23
- Which of the following Microsoft Office products are you experienced with?
24
- How would you rate your English language skills?
25
- Which of the following languages are you fluent in?
26
- Are you willing to undergo a pre-employment background check?
27
- How much notice are you required to give your current employer?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72559920.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72559920, "location": "penang island", "company": "intradeco sdn bhd", "job_title": "it business analyst", "salary": "MYR 5,000 - 7,000", "description": "How many years' experience do you have as a business analyst?\nWhat's your expected monthly basic salary?\nDo you have experience working within a scrum agile team?\nHow many years' experience do you have as an Information Technology Business Analyst?\nHave you worked in a role which requires a sound understanding of the software development lifecycle?\nWhich of the following programming languages are you experienced in?"}
data/02_processed/72559920.txt DELETED
@@ -1,10 +0,0 @@
1
- LOCATION: Penang Island
2
- COMPANY: Intradeco Sdn Bhd
3
- JOB TITLE: IT Business Analyst
4
- SALARY: MYR 5,000 - 7,000
5
- DESCRIPTION: How many years' experience do you have as a business analyst?
6
- What's your expected monthly basic salary?
7
- Do you have experience working within a scrum agile team?
8
- How many years' experience do you have as an Information Technology Business Analyst?
9
- Have you worked in a role which requires a sound understanding of the software development lifecycle?
10
- Which of the following programming languages are you experienced in?
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72662959.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72662959, "location": "penang island", "company": "analog devices sdn. bhd.", "job_title": "principal engineer, automation project", "salary": "RM\u00a012,000 \u2013 RM\u00a017,000 per month", "description": "Develop and execute a comprehensive automation strategy that aligns with the organization's overall manufacturing objectives and Industrial 4.0 principles.\nLead the implementation and integration of automation technologies, including robotics, artificial intelligence, machine learning, and IoT devices, into the manufacturing processes.\nCollaborate with cross-functional teams, including engineering, operations, and IT, to identify automation opportunities, define project scopes, and establish implementation plans.\nEvaluate and select appropriate automation solutions, ensuring compatibility with existing systems and equipment.\nOversee the installation, configuration, and troubleshooting of automation equipment, ensuring optimal performance and minimal downtime.\nEstablish and maintain connectivity between equipment and the manufacturing system, enabling real-time monitoring, data collection, and analysis.\nDevelop and implement data automation strategies to streamline production workflows, enhance operational efficiency, and drive data-driven decision-making processes.\nImplement error-proofing measures, such as vision systems, sensors, and quality control checks, to minimize manufacturing errors and improve product quality.\nIdentify and analyze productivity bottlenecks in the manufacturing process, and propose and implement automation solutions to optimize throughput and reduce cycle times.\nEnsure compliance with industry standards, regulations, and best practices related to automation, data privacy, and cybersecurity.\nTrain and mentor manufacturing personnel on the operation and maintenance of automation systems, fostering a culture of continuous learning and improvement.\nStay updated with the latest advancements and trends in manufacturing automation, Industrial 4.0, and related technologies, and provide recommendations for continuous improvement.\nBachelor's Degree in Engineering, Computer Science, or a related field. Advanced Degree preferred.\nProven experience in manufacturing automation, process optimization, and Industrial 4.0 implementation.\nStrong knowledge of automation technologies, including robotics, artificial intelligence, machine learning, and IoT devices.\nFamiliarity with connectivity protocols and standards such as OPC-UA, MQTT, and RESTful APIs.\nExperience in data automation, data analytics, and visualization tools.\nProficient in programming languages, such as Python, C++, or Java, for automation system integration and customization.\nDemonstrated project management skills, including the ability to lead cross-functional teams, manage timelines, and deliver results within budget.\nExcellent problem-solving and analytical abilities, with a strong attention to detail.\nStrong communication and interpersonal skills to effectively collaborate with stakeholders at all levels of the organization.\nKnowledge of manufacturing processes and a deep understanding of the interplay between automation, error-proofing, and productivity improvement."}
data/02_processed/72662959.txt DELETED
@@ -1,26 +0,0 @@
1
- LOCATION: Penang Island
2
- COMPANY: Analog Devices Sdn. Bhd.
3
- JOB TITLE: Principal Engineer, Automation Project
4
- SALARY: RM 12,000 – RM 17,000 per month
5
- DESCRIPTION: Develop and execute a comprehensive automation strategy that aligns with the organization's overall manufacturing objectives and Industrial 4.0 principles.
6
- Lead the implementation and integration of automation technologies, including robotics, artificial intelligence, machine learning, and IoT devices, into the manufacturing processes.
7
- Collaborate with cross-functional teams, including engineering, operations, and IT, to identify automation opportunities, define project scopes, and establish implementation plans.
8
- Evaluate and select appropriate automation solutions, ensuring compatibility with existing systems and equipment.
9
- Oversee the installation, configuration, and troubleshooting of automation equipment, ensuring optimal performance and minimal downtime.
10
- Establish and maintain connectivity between equipment and the manufacturing system, enabling real-time monitoring, data collection, and analysis.
11
- Develop and implement data automation strategies to streamline production workflows, enhance operational efficiency, and drive data-driven decision-making processes.
12
- Implement error-proofing measures, such as vision systems, sensors, and quality control checks, to minimize manufacturing errors and improve product quality.
13
- Identify and analyze productivity bottlenecks in the manufacturing process, and propose and implement automation solutions to optimize throughput and reduce cycle times.
14
- Ensure compliance with industry standards, regulations, and best practices related to automation, data privacy, and cybersecurity.
15
- Train and mentor manufacturing personnel on the operation and maintenance of automation systems, fostering a culture of continuous learning and improvement.
16
- Stay updated with the latest advancements and trends in manufacturing automation, Industrial 4.0, and related technologies, and provide recommendations for continuous improvement.
17
- Bachelor's Degree in Engineering, Computer Science, or a related field. Advanced Degree preferred.
18
- Proven experience in manufacturing automation, process optimization, and Industrial 4.0 implementation.
19
- Strong knowledge of automation technologies, including robotics, artificial intelligence, machine learning, and IoT devices.
20
- Familiarity with connectivity protocols and standards such as OPC-UA, MQTT, and RESTful APIs.
21
- Experience in data automation, data analytics, and visualization tools.
22
- Proficient in programming languages, such as Python, C++, or Java, for automation system integration and customization.
23
- Demonstrated project management skills, including the ability to lead cross-functional teams, manage timelines, and deliver results within budget.
24
- Excellent problem-solving and analytical abilities, with a strong attention to detail.
25
- Strong communication and interpersonal skills to effectively collaborate with stakeholders at all levels of the organization.
26
- Knowledge of manufacturing processes and a deep understanding of the interplay between automation, error-proofing, and productivity improvement.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72666993.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72666993, "location": "petaling", "company": "isj technology sdn. bhd.", "job_title": "data engineer", "salary": "RM\u00a05,000 \u2013 RM\u00a07,500 per month", "description": "Develop data pipelines for data ingestion and transformation.\nCreate and optimize data models for efficient storage and retrieval.\nIntegrate data from various sources into unified datasets.\nImplement data quality checks and governance processes.\nManage and optimize data infrastructure and databases.\nDesign and manage ETL processes for data movement.\nEnsure data security and compliance with regulations.\nCollaborate with data scientists and analysts.\nDocument data engineering processes and architectures.\nBachelor\u2019s degree in computer science or related field.\nAt least 3 years of working experience in data engineering and ETL processes.\nProficiency in Python, SQL, or Scala.\nStrong understanding of data modelling and warehousing.\nFamiliarity with cloud-based data platforms (AWS, Azure, GCP).\nAnalytical mindset and problem-solving skills.\nExcellent communication and teamwork abilities.\nWhat's your expected monthly basic salary?\nHow many years' experience do you have as a Data Engineer?\nHow many years' experience do you have using SQL queries?\nHave you worked in a role which requires experience with machine learning?\nWhich of the following languages are you fluent in?\nHow many years' experience do you have as an ETL Data Warehouse Programmer?"}
data/02_processed/72666993.txt DELETED
@@ -1,26 +0,0 @@
1
- LOCATION: Petaling
2
- COMPANY: ISJ TECHNOLOGY SDN. BHD.
3
- JOB TITLE: Data Engineer
4
- SALARY: RM 5,000 – RM 7,500 per month
5
- DESCRIPTION: Develop data pipelines for data ingestion and transformation.
6
- Create and optimize data models for efficient storage and retrieval.
7
- Integrate data from various sources into unified datasets.
8
- Implement data quality checks and governance processes.
9
- Manage and optimize data infrastructure and databases.
10
- Design and manage ETL processes for data movement.
11
- Ensure data security and compliance with regulations.
12
- Collaborate with data scientists and analysts.
13
- Document data engineering processes and architectures.
14
- Bachelor’s degree in computer science or related field.
15
- At least 3 years of working experience in data engineering and ETL processes.
16
- Proficiency in Python, SQL, or Scala.
17
- Strong understanding of data modelling and warehousing.
18
- Familiarity with cloud-based data platforms (AWS, Azure, GCP).
19
- Analytical mindset and problem-solving skills.
20
- Excellent communication and teamwork abilities.
21
- What's your expected monthly basic salary?
22
- How many years' experience do you have as a Data Engineer?
23
- How many years' experience do you have using SQL queries?
24
- Have you worked in a role which requires experience with machine learning?
25
- Which of the following languages are you fluent in?
26
- How many years' experience do you have as an ETL Data Warehouse Programmer?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72671620.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72671620, "location": "kuala lumpur", "company": "affin bank berhad", "job_title": "manager, rpa developer", "salary": "RM\u00a08,000 \u2013 RM\u00a012,000 per month", "description": "Design, develop, document, test and debug Robotic Process Automation application and maintenance of the bot and orchestration. Knowledge of core RPA development principles.\nSolid understanding of the application of Software Development Life Cycle, Agile Operating Model & Scrum methodology.\nAbility to troubleshoot issues to find the root cause and recommend solutions.\nEnsure the robots are 100% compliant with the required governance process and standards.\nAbility to work in a team environment.\nProficiency in written and spoken English. Able to communicate in a clear and concise manner at various audience levels. Other language proficiency is a plus.\nSelf-Starter who takes ownership and responsibility for projects and initiatives.\nExperience with Unit Testing, Test Driven Development, Functional Test, and other Testing activities.\n8-10 years\u2019 experience in RPA and good knowledge and experience in developing through RPA tools.\nSuccessful track record of developing quality software products.\nAble to mentor junior developers.\nFamiliarity with RPA from conception to deployment.\nAble to work independently with ownership mentality.\nExperience in Scrum/Agile development methodologies.\nMust have an optimal mix of business process, project management and IT Skills.\nCertified developers in UiPath / BluePrism."}
data/02_processed/72671620.txt DELETED
@@ -1,20 +0,0 @@
1
- LOCATION: Kuala Lumpur
2
- COMPANY: Affin Bank Berhad
3
- JOB TITLE: Manager, RPA Developer
4
- SALARY: RM 8,000 – RM 12,000 per month
5
- DESCRIPTION: Design, develop, document, test and debug Robotic Process Automation application and maintenance of the bot and orchestration. Knowledge of core RPA development principles.
6
- Solid understanding of the application of Software Development Life Cycle, Agile Operating Model & Scrum methodology.
7
- Ability to troubleshoot issues to find the root cause and recommend solutions.
8
- Ensure the robots are 100% compliant with the required governance process and standards.
9
- Ability to work in a team environment.
10
- Proficiency in written and spoken English. Able to communicate in a clear and concise manner at various audience levels. Other language proficiency is a plus.
11
- Self-Starter who takes ownership and responsibility for projects and initiatives.
12
- Experience with Unit Testing, Test Driven Development, Functional Test, and other Testing activities.
13
- 8-10 years’ experience in RPA and good knowledge and experience in developing through RPA tools.
14
- Successful track record of developing quality software products.
15
- Able to mentor junior developers.
16
- Familiarity with RPA from conception to deployment.
17
- Able to work independently with ownership mentality.
18
- Experience in Scrum/Agile development methodologies.
19
- Must have an optimal mix of business process, project management and IT Skills.
20
- Certified developers in UiPath / BluePrism.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72687269.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72687269, "location": "seberang perai", "company": "lam research international sdn. bhd.", "job_title": "intern - data science", "salary": "RM\u00a01,500 per month", "description": "Based under Project Transition team.\nExperience in SQL and programming languages like phyton, R.\nDevelop an automated dashboard via Power BI / Apps / Automate that enables report generation and compliments the decision-making process.\nThe ability to take a vague problem and solve them in a structured, data driven method.\nRequired to work and collaborate with internal cross functional teams.\nDegree in Data Science/Computer Science with knowledge in Excel/ VBA/ Power BI/ SQL."}
data/02_processed/72687269.txt DELETED
@@ -1,10 +0,0 @@
1
- LOCATION: Seberang Perai
2
- COMPANY: LAM RESEARCH INTERNATIONAL SDN. BHD.
3
- JOB TITLE: Intern - Data Science
4
- SALARY: RM 1,500 per month
5
- DESCRIPTION: Based under Project Transition team.
6
- Experience in SQL and programming languages like phyton, R.
7
- Develop an automated dashboard via Power BI / Apps / Automate that enables report generation and compliments the decision-making process.
8
- The ability to take a vague problem and solve them in a structured, data driven method.
9
- Required to work and collaborate with internal cross functional teams.
10
- Degree in Data Science/Computer Science with knowledge in Excel/ VBA/ Power BI/ SQL.
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72693889.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72693889, "location": "kuala lumpur", "company": "rga global reinsurance company ltd labuan branch", "job_title": "contract business administration analyst", "salary": "RM\u00a04,000 \u2013 RM\u00a04,500 per month", "description": "Use RGA administration system to process client statement/data to ensure accuracy and completeness on the final results for reporting\nPerform data checking and liase with client for any reinsurance issue arise pertaining to the statement\nFor statements not received, make sure correct accrual methods are adopted and reasonable amounts are accrued at each month end process\nIdentify risks to be ceded out and calculate related amounts accurately according to retrocession arrangement at each month's end\nMap or remap data into a common format in case of new format or format change on client data\nExtract and analyze data to fulfill ad hoc projects, e.g. experience study\nSupport on various management reporting tasks\nSupport to review treaty content from admin's perspective\nSupport on different types of project execution and management\nActively involved in team discussions and be able to communicate with other local functions effectively\nUniversity degree or above in actuarial science, mathematics, statistic, information technology, accounting or other related disciplines\nClient-focused and target driven\nA good team player who can also work on own initiative\nLogical thinking, attention to detail, time management and problem-solving skills\nAbility to cope with multi tasks at the same time, work under pressure and prioritize them based on team's goal\nA positive attitude in dealing with people and different types of tasks\nBetter to have some working experience\nBasic understanding or Oracle SQL; prior experience on Toad would be a plus\nAccess and Excel skill (including but not limited to VLOOKUP, write/edit VBA)\nBe able to handle basic English communication in own field\nIntellectual curiosity and the desire to learn"}
data/02_processed/72693889.txt DELETED
@@ -1,25 +0,0 @@
1
- LOCATION: Kuala Lumpur
2
- COMPANY: RGA Global Reinsurance Company Ltd Labuan Branch
3
- JOB TITLE: Contract Business Administration Analyst
4
- SALARY: RM 4,000 – RM 4,500 per month
5
- DESCRIPTION: Use RGA administration system to process client statement/data to ensure accuracy and completeness on the final results for reporting
6
- Perform data checking and liase with client for any reinsurance issue arise pertaining to the statement
7
- For statements not received, make sure correct accrual methods are adopted and reasonable amounts are accrued at each month end process
8
- Identify risks to be ceded out and calculate related amounts accurately according to retrocession arrangement at each month's end
9
- Map or remap data into a common format in case of new format or format change on client data
10
- Extract and analyze data to fulfill ad hoc projects, e.g. experience study
11
- Support on various management reporting tasks
12
- Support to review treaty content from admin's perspective
13
- Support on different types of project execution and management
14
- Actively involved in team discussions and be able to communicate with other local functions effectively
15
- University degree or above in actuarial science, mathematics, statistic, information technology, accounting or other related disciplines
16
- Client-focused and target driven
17
- A good team player who can also work on own initiative
18
- Logical thinking, attention to detail, time management and problem-solving skills
19
- Ability to cope with multi tasks at the same time, work under pressure and prioritize them based on team's goal
20
- A positive attitude in dealing with people and different types of tasks
21
- Better to have some working experience
22
- Basic understanding or Oracle SQL; prior experience on Toad would be a plus
23
- Access and Excel skill (including but not limited to VLOOKUP, write/edit VBA)
24
- Be able to handle basic English communication in own field
25
- Intellectual curiosity and the desire to learn
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72696058.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72696058, "location": "kuala lumpur", "company": "lynx solutions sdn. bhd.", "job_title": "data analyst", "salary": "RM\u00a04,000 \u2013 RM\u00a04,500 per month", "description": "Handle administrative duties and ad-hoc from sales leader.\nPlaning and monitoring data based on company's market data and provided sales data, thus outlining problems, opportunities and solutions for company.\nMainly focuses on analyzing the conversion rate data of Salesperson, compare the data as well as present the optimization proposal.\nIntegrate the result of data analysis.\nLead and supervise the working behavior of Salesperson. Provide guidance in order to improve as well as enhance Sales team's conversion data.\nPreferably individuals possess good problem solving skills and high flexibility in resolving issues.\nAt least one year experience in Analytical/Statistics/Sales Data Analyst fields.\nProficiency in using Statistics Software, Excel and Tableau Desktop would be an added advantage.\nStrong analytical and problem solving skills.\nFast learner, high responsibility, proven to work as a team and willingness to learn.\nLanguange: \nMust be able to speak, write & read Mandarin, and English at least for basic communication.\nProficiency in using Microsoft PowerPoint would be an advantage.\nWorking experience in financial services industry preferred.\nPossess at least Bachelor's Degree/Post Graduate Diploma in Finance/Analyst or equivalent. Possess huge interest in Analytical fields.\nHow would you rate your Mandarin language skills?\nWhat's your expected monthly basic salary?\nHow much notice are you required to give your current employer?"}
data/02_processed/72696058.txt DELETED
@@ -1,22 +0,0 @@
1
- LOCATION: Kuala Lumpur
2
- COMPANY: LYNX SOLUTIONS SDN. BHD.
3
- JOB TITLE: DATA ANALYST
4
- SALARY: RM 4,000 – RM 4,500 per month
5
- DESCRIPTION: Handle administrative duties and ad-hoc from sales leader.
6
- Planing and monitoring data based on company's market data and provided sales data, thus outlining problems, opportunities and solutions for company.
7
- Mainly focuses on analyzing the conversion rate data of Salesperson, compare the data as well as present the optimization proposal.
8
- Integrate the result of data analysis.
9
- Lead and supervise the working behavior of Salesperson. Provide guidance in order to improve as well as enhance Sales team's conversion data.
10
- Preferably individuals possess good problem solving skills and high flexibility in resolving issues.
11
- At least one year experience in Analytical/Statistics/Sales Data Analyst fields.
12
- Proficiency in using Statistics Software, Excel and Tableau Desktop would be an added advantage.
13
- Strong analytical and problem solving skills.
14
- Fast learner, high responsibility, proven to work as a team and willingness to learn.
15
- Languange:
16
- Must be able to speak, write & read Mandarin, and English at least for basic communication.
17
- Proficiency in using Microsoft PowerPoint would be an advantage.
18
- Working experience in financial services industry preferred.
19
- Possess at least Bachelor's Degree/Post Graduate Diploma in Finance/Analyst or equivalent. Possess huge interest in Analytical fields.
20
- How would you rate your Mandarin language skills?
21
- What's your expected monthly basic salary?
22
- How much notice are you required to give your current employer?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72696072.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72696072, "location": "johor bahru district", "company": "heng hiap industries sdn. bhd.", "job_title": "data analyst executive", "salary": "RM\u00a03,000 \u2013 RM\u00a04,500 per month", "description": "Extract and process data from the ERP system, maintaining its accuracy and relevance.\nDevelop and maintain digital dashboards to display operational and financial data, offering real-time insights to management.\nActively participate in planning and preparation for the future implementation of IoT systems over the next three years.\nStay informed on IoT trends and technologies to ensure seamless future integration and utilization.\nAnalyze data to uncover trends, patterns, and actionable insights crucial for business operations and strategic decision-making.\nImplement advanced data analysis and statistical techniques for predictive analysis.\nAnalyze data related to environmental, social, and governance factors to support the organization's sustainability goals.\nProvide insights for improving ESG performance based on data analysis.\nLead data-related projects, ensuring objectives are met efficiently and effectively.\nCollaborate with different departments to understand their data requirements and deliver tailored support.\nKeep abreast of the latest trends in data analytics, ERP systems, IoT, ESG, and Industry 4.0.\nRecommend and implement improvements in data analysis processes and tools.\nBachelor\u2019s or Master\u2019s degree in Data Science, Statistics, Computer Science, or a related field.\nProven experience in data analysis, with a focus on ERP systems and data visualization.\nProficiency in statistical software (e.g., R, Python), databases, and visualization tools (e.g., Tableau, Power BI).\nStrong analytical, problem-solving, and project management skills.\nEffective communication skills, capable of translating complex data into clear insights.\nForward-thinking mindset, with a keen interest in emerging technologies such as IoT."}
data/02_processed/72696072.txt DELETED
@@ -1,22 +0,0 @@
1
- LOCATION: Johor Bahru District
2
- COMPANY: Heng Hiap Industries Sdn. Bhd.
3
- JOB TITLE: Data Analyst Executive
4
- SALARY: RM 3,000 – RM 4,500 per month
5
- DESCRIPTION: Extract and process data from the ERP system, maintaining its accuracy and relevance.
6
- Develop and maintain digital dashboards to display operational and financial data, offering real-time insights to management.
7
- Actively participate in planning and preparation for the future implementation of IoT systems over the next three years.
8
- Stay informed on IoT trends and technologies to ensure seamless future integration and utilization.
9
- Analyze data to uncover trends, patterns, and actionable insights crucial for business operations and strategic decision-making.
10
- Implement advanced data analysis and statistical techniques for predictive analysis.
11
- Analyze data related to environmental, social, and governance factors to support the organization's sustainability goals.
12
- Provide insights for improving ESG performance based on data analysis.
13
- Lead data-related projects, ensuring objectives are met efficiently and effectively.
14
- Collaborate with different departments to understand their data requirements and deliver tailored support.
15
- Keep abreast of the latest trends in data analytics, ERP systems, IoT, ESG, and Industry 4.0.
16
- Recommend and implement improvements in data analysis processes and tools.
17
- Bachelor’s or Master’s degree in Data Science, Statistics, Computer Science, or a related field.
18
- Proven experience in data analysis, with a focus on ERP systems and data visualization.
19
- Proficiency in statistical software (e.g., R, Python), databases, and visualization tools (e.g., Tableau, Power BI).
20
- Strong analytical, problem-solving, and project management skills.
21
- Effective communication skills, capable of translating complex data into clear insights.
22
- Forward-thinking mindset, with a keen interest in emerging technologies such as IoT.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72696366.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72696366, "location": "kuala lumpur", "company": "devsoft sdn bhd", "job_title": "system analyst", "salary": "RM\u00a04,000 \u2013 RM\u00a06,000 per month", "description": "How many years' experience do you have as a systems analyst?\nHow would you rate your Mandarin language skills?\nWhich of the following Relational Database Management Systems (RDBMS) are you experienced with?\nHave you worked in a role which requires a sound understanding of the software development lifecycle?\nHow many years' experience do you have using SQL queries?"}
data/02_processed/72696366.txt DELETED
@@ -1,9 +0,0 @@
1
- LOCATION: Kuala Lumpur
2
- COMPANY: Devsoft Sdn Bhd
3
- JOB TITLE: System Analyst
4
- SALARY: RM 4,000 – RM 6,000 per month
5
- DESCRIPTION: How many years' experience do you have as a systems analyst?
6
- How would you rate your Mandarin language skills?
7
- Which of the following Relational Database Management Systems (RDBMS) are you experienced with?
8
- Have you worked in a role which requires a sound understanding of the software development lifecycle?
9
- How many years' experience do you have using SQL queries?
 
 
 
 
 
 
 
 
 
 
data/02_processed/72700478.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72700478, "location": "kuala lumpur", "company": "ambition group malaysia sdn bhd", "job_title": "rpa manager (uipath)", "salary": "RM\u00a07,000 \u2013 RM\u00a010,000 per month", "description": "Develop and execute a comprehensive UiPath automation strategy aligned with organizational goals.\nCollaborate with stakeholders to identify automation opportunities and prioritize projects for implementation.\nLead a team of UiPath developers and analysts, providing guidance, mentorship, and fostering a collaborative and innovative work environment.\nOversee the end-to-end development lifecycle of UiPath automation projects.\nDesign, develop, and implement UiPath automation solutions to streamline business processes.\nEnsure the quality, scalability, and robustness of developed automation workflows.\nAnalyze existing business processes to identify areas for improvement and automation.\nWork closely with business units to optimize processes for maximum efficiency and productivity.\nLead the deployment of UiPath automation solutions, ensuring seamless integration with existing systems.\nProvide ongoing maintenance, support, and troubleshooting for deployed automation workflows.\nConduct training sessions for end-users and stakeholders on UiPath best practices and functionality.\nCreate and maintain comprehensive documentation for all UiPath processes and workflows.\nBachelor's degree in Computer Science, Information Technology, or a related field.\nProven experience as a UiPath Developer with a minimum of 3 years in a managerial or leadership role.\nIn-depth knowledge of UiPath Studio, Orchestrator, and other UiPath products.\nStrong programming skills, particularly in .NET.\nProficiency in implementing and managing UiPath automation solutions.\nDemonstrated ability to lead and inspire a team of UiPath developers.\nStrong project management and organizational skills.\nExcellent communication and interpersonal skills.\nAbility to effectively convey technical information to non-technical stakeholders.\nProven problem-solving skills with a strategic and analytical mindset.\nAbility to troubleshoot and resolve complex issues related to UiPath implementations.\nUiPath Advanced Developer certification is highly desirable."}
data/02_processed/72700478.txt DELETED
@@ -1,28 +0,0 @@
1
- LOCATION: Kuala Lumpur
2
- COMPANY: Ambition Group Malaysia Sdn Bhd
3
- JOB TITLE: RPA Manager (UiPath)
4
- SALARY: RM 7,000 – RM 10,000 per month
5
- DESCRIPTION: Develop and execute a comprehensive UiPath automation strategy aligned with organizational goals.
6
- Collaborate with stakeholders to identify automation opportunities and prioritize projects for implementation.
7
- Lead a team of UiPath developers and analysts, providing guidance, mentorship, and fostering a collaborative and innovative work environment.
8
- Oversee the end-to-end development lifecycle of UiPath automation projects.
9
- Design, develop, and implement UiPath automation solutions to streamline business processes.
10
- Ensure the quality, scalability, and robustness of developed automation workflows.
11
- Analyze existing business processes to identify areas for improvement and automation.
12
- Work closely with business units to optimize processes for maximum efficiency and productivity.
13
- Lead the deployment of UiPath automation solutions, ensuring seamless integration with existing systems.
14
- Provide ongoing maintenance, support, and troubleshooting for deployed automation workflows.
15
- Conduct training sessions for end-users and stakeholders on UiPath best practices and functionality.
16
- Create and maintain comprehensive documentation for all UiPath processes and workflows.
17
- Bachelor's degree in Computer Science, Information Technology, or a related field.
18
- Proven experience as a UiPath Developer with a minimum of 3 years in a managerial or leadership role.
19
- In-depth knowledge of UiPath Studio, Orchestrator, and other UiPath products.
20
- Strong programming skills, particularly in .NET.
21
- Proficiency in implementing and managing UiPath automation solutions.
22
- Demonstrated ability to lead and inspire a team of UiPath developers.
23
- Strong project management and organizational skills.
24
- Excellent communication and interpersonal skills.
25
- Ability to effectively convey technical information to non-technical stakeholders.
26
- Proven problem-solving skills with a strategic and analytical mindset.
27
- Ability to troubleshoot and resolve complex issues related to UiPath implementations.
28
- UiPath Advanced Developer certification is highly desirable.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72733305.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72733305, "location": "kuala lumpur", "company": "snsoft sdn. bhd.", "job_title": "database administrator", "salary": "RM\u00a08,500 \u2013 RM\u00a012,000 per month", "description": "13th Months Salary (upon Company Declaration)\nProject Incentive (upon Company Declaration based on project performance)\nTransport, Meal, Birthday Allowances (upon Confirmation)\nMedical + Dental claim\nSports Activities (Badminton & Basketball),\nTeam Building activities\nTraining and certification sponsored by company (Selected employees).\nRewards and recognition: Long Service Award / Best Performer Award / Role Model Awards etc\nSmart casual attire\nYearly annual dinner\nDesigns and plans database structural architecture, requirements by analyzing and reviewing client operations, applications, and programming; evaluate current systems;\nBuild/Configure various types of databases such as Mongo, MySQL and Redis database replication based on business development trends\nEvaluate, plan and perform the DB upgrades, back-up, recovery and data migration\nDesign and implement Disaster Recovery plans & High Availability solutions and recommendations based on different types of databases\nSetup and maintain Linux based systems used for the database.\nSetup and manage on cloud AWS services and databases.\u00a0\nTo be responsible perform daily database related tasks such as:\nCreate, publish and monitor database health checks to monitoring systems to identify slow queries; replication lags; node failures; index usage patterns; CPU usage; memory usage; locks; number of connections and any other relevant parameters\nDrive best practices for backups, replication, and health checks\nWork closely with the application team to understand what changes are coming in a build/patch/hotfix, do an impact analysis, fine-tune the queries if any\nAutomate the database repetitive tasks\nTo assess database implementation procedures to ensure they comply with internal and external regulations.\nCandidates must possess at least a Bachelor's Degree/Post-Graduate Diploma/Professional Degree in Computer Science/Information Technology or equivalent.\nAt least 2 years hands-on experience as database administrator in production environments.\nPreferably candidates who are proficient/familiar with MySQL/ MONGODB database operating mechanism/architecture, including performance optimization and adjustment.\nProficiency in writing debugging procedures, functions and SQL statements.\nStrong scripting experience in Unix/Shell Scripting and Python.\nCandidate who is experienced in AWS is a plus point.\nPreferably candidates with strong troubleshooting skills, have good technical sense and ability in document integration.\nPreferably candidates who are eager to learn new technology.\nPrefer candidates who can speak basic mandarin.\nWhich of the following Relational Database Management Systems (RDBMS) are you experienced with?\nWhat's your expected monthly basic salary?\nWhich of the following languages are you fluent in?\nWhich of the following programming languages are you experienced in?\nHow would you rate your Mandarin language skills?\nHow many years' experience do you have as a Database Administrator?\nDo you have customer service experience?\nWhich of the following Linux distributions are you familiar with?"}
data/02_processed/72733305.txt DELETED
@@ -1,43 +0,0 @@
1
- LOCATION: Kuala Lumpur
2
- COMPANY: SNSOFT SDN. BHD.
3
- JOB TITLE: Database Administrator
4
- SALARY: RM 8,500 – RM 12,000 per month
5
- DESCRIPTION: 13th Months Salary (upon Company Declaration)
6
- Project Incentive (upon Company Declaration based on project performance)
7
- Transport, Meal, Birthday Allowances (upon Confirmation)
8
- Medical + Dental claim
9
- Sports Activities (Badminton & Basketball),
10
- Team Building activities
11
- Training and certification sponsored by company (Selected employees).
12
- Rewards and recognition: Long Service Award / Best Performer Award / Role Model Awards etc
13
- Smart casual attire
14
- Yearly annual dinner
15
- Designs and plans database structural architecture, requirements by analyzing and reviewing client operations, applications, and programming; evaluate current systems;
16
- Build/Configure various types of databases such as Mongo, MySQL and Redis database replication based on business development trends
17
- Evaluate, plan and perform the DB upgrades, back-up, recovery and data migration
18
- Design and implement Disaster Recovery plans & High Availability solutions and recommendations based on different types of databases
19
- Setup and maintain Linux based systems used for the database.
20
- Setup and manage on cloud AWS services and databases. 
21
- To be responsible perform daily database related tasks such as:
22
- Create, publish and monitor database health checks to monitoring systems to identify slow queries; replication lags; node failures; index usage patterns; CPU usage; memory usage; locks; number of connections and any other relevant parameters
23
- Drive best practices for backups, replication, and health checks
24
- Work closely with the application team to understand what changes are coming in a build/patch/hotfix, do an impact analysis, fine-tune the queries if any
25
- Automate the database repetitive tasks
26
- To assess database implementation procedures to ensure they comply with internal and external regulations.
27
- Candidates must possess at least a Bachelor's Degree/Post-Graduate Diploma/Professional Degree in Computer Science/Information Technology or equivalent.
28
- At least 2 years hands-on experience as database administrator in production environments.
29
- Preferably candidates who are proficient/familiar with MySQL/ MONGODB database operating mechanism/architecture, including performance optimization and adjustment.
30
- Proficiency in writing debugging procedures, functions and SQL statements.
31
- Strong scripting experience in Unix/Shell Scripting and Python.
32
- Candidate who is experienced in AWS is a plus point.
33
- Preferably candidates with strong troubleshooting skills, have good technical sense and ability in document integration.
34
- Preferably candidates who are eager to learn new technology.
35
- Prefer candidates who can speak basic mandarin.
36
- Which of the following Relational Database Management Systems (RDBMS) are you experienced with?
37
- What's your expected monthly basic salary?
38
- Which of the following languages are you fluent in?
39
- Which of the following programming languages are you experienced in?
40
- How would you rate your Mandarin language skills?
41
- How many years' experience do you have as a Database Administrator?
42
- Do you have customer service experience?
43
- Which of the following Linux distributions are you familiar with?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/02_processed/72736438.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"id": 72736438, "location": "penang island", "company": "ust global (m) sdn bhd", "job_title": "data analyst", "salary": "RM\u00a03,500 \u2013 RM\u00a04,500 per month", "description": "Pulling data from various database, analyzing it and aggregate it to enable and desired visualization\nCreating reports and dashboard by leveraging the existing tools or using Microsoft Power BI\u00a0\nCreating and maintaining dashboards, models, and data products\nDeveloping and maintaining databases, data systems \u2013 reorganizing data in a readable format Performing analysis to assess quality and meaning of data\nBachelor's Degree in Industrial Engineering, Computer Science, Data Analysis, Supply Chain Analytics, Information Systems, or any other related field\n5+ years of experience in application analysis and design, business process and concepts\n5+ years hands on experience in: Power BI, Python, Excel\u00a0\nAble to analyzed and summarized data pulled from the databases, and data system by using Microsoft Power BI tool\nAble to automate and run live report onto selected tools and systems dates.\nWhat's your expected monthly basic salary?\nHow much notice are you required to give your current employer?"}
data/02_processed/72736438.txt DELETED
@@ -1,15 +0,0 @@
1
- LOCATION: Penang Island
2
- COMPANY: UST Global (M) Sdn Bhd
3
- JOB TITLE: Data Analyst
4
- SALARY: RM 3,500 – RM 4,500 per month
5
- DESCRIPTION: Pulling data from various database, analyzing it and aggregate it to enable and desired visualization
6
- Creating reports and dashboard by leveraging the existing tools or using Microsoft Power BI 
7
- Creating and maintaining dashboards, models, and data products
8
- Developing and maintaining databases, data systems – reorganizing data in a readable format Performing analysis to assess quality and meaning of data
9
- Bachelor's Degree in Industrial Engineering, Computer Science, Data Analysis, Supply Chain Analytics, Information Systems, or any other related field
10
- 5+ years of experience in application analysis and design, business process and concepts
11
- 5+ years hands on experience in: Power BI, Python, Excel 
12
- Able to analyzed and summarized data pulled from the databases, and data system by using Microsoft Power BI tool
13
- Able to automate and run live report onto selected tools and systems dates.
14
- What's your expected monthly basic salary?
15
- How much notice are you required to give your current employer?