Total Pageviews

Liquibase

  Install Liquibase (v4.32.0)



download and install liquibase


create folder /git repo LB_HOME=~/Desktop/Liquibase

Install java

sudo apt-get update && sudo apt-get upgrade -y sudo apt-get install default-jdk -y 

java -version

Install Liquibase

sudo apt-get install unzip -y wget https://github.com/liquibase/liquibase/releases/download/v4.28.0/liquibase-4.28.0.zip unzip liquibase-4.28.0.zip sudo mv liquibase /opt/ sudo ln -s /opt/liquibase/liquibase /usr/local/bin/liquibase 

liquibase --version 

setup for databricks

Download the Databricks JDBC driver 

https://www.databricks.com/spark/jdbc-drivers-download 

sudo mv ~/Downloads/DatabricksJDBC42.jar LB_HOME/lib/databricks/ 

FROM liquibase/liquibase:4.25.0


RUN wget https://databricks-bi-artifacts.s3.us-east-2.amazonaws.com/simbaspark-drivers/jdbc/2.6.34/DatabricksJDBC42-2.6.34.1058.zip;\
unzip DatabricksJDBC42-2.6.34.1058.zip;
mv DatabricksJDBC42-2.6.34.1058\ 2/DatabricksJDBC42.jar /liquibase/lib/;
rm DatabricksJDBC42-2.6.34.1058.zip;
wget https://github.com/liquibase/liquibase-databricks/releases/download/v1.1.2/liquibase-databricks-1.1.2.jar;\
mv liquibase-databricks-1.1.2.jar /liquibase/lib/

How to Install LibreOffice on Linux: A Step-by-Step Guide

How to Install LibreOffice on Linux: A Step-by-Step Guide

LibreOffice is a powerful, free, and open-source office suite that is a popular alternative to Microsoft Office. It includes applications for word processing, spreadsheets, presentations, databases, and more. If you're a Linux user and want to install LibreOffice on your system, this guide will walk you through the process.

Why Choose LibreOffice?

  • Free and Open Source – No licensing fees or subscriptions.
  • Cross-Platform Support – Available for Linux, Windows, and macOS.
  • Feature-Rich – Includes Writer (Word), Calc (Excel), Impress (PowerPoint), and more.
  • ODF Support – Natively supports Open Document Format.
  • Community-Driven – Developed and supported by a global community.

Installing LibreOffice on Linux

The installation process depends on your Linux distribution. Below are instructions for the most popular distros.

1. Ubuntu / Debian

sudo apt update
sudo apt install libreoffice

To install additional language packs:

sudo apt install libreoffice-l10n-en-gb

2. Fedora

sudo dnf install libreoffice

3. Arch Linux / Manjaro

sudo pacman -S libreoffice-fresh

Or for the still (more stable) version:

sudo pacman -S libreoffice-still

4. Using Flatpak (Universal Method)

flatpak install flathub org.libreoffice.LibreOffice

Then run it using:

flatpak run org.libreoffice.LibreOffice

5. Using Snap (Ubuntu and others)

sudo snap install libreoffice

Verifying the Installation

After installation, you can launch LibreOffice from your application menu, or via terminal:

libreoffice

Keeping LibreOffice Updated

  • APT/DNF/Pacman users can update LibreOffice as part of system updates.
  • Flatpak users can run: flatpak update
  • Snap users can run: sudo snap refresh

Final Thoughts

LibreOffice is a versatile and reliable office suite that fits perfectly in any Linux setup. Whether you're writing a novel, calculating spreadsheets, or crafting a presentation, LibreOffice has the tools you need—all for free.

Have you installed LibreOffice on your system? Let us know your experience in the comments!

Chrome: How to Install Google Chrome on Linux

How to Install Google Chrome on Linux

Works on Ubuntu, Debian, Fedora, Arch Linux and more - Updated for 2025

Google Chrome is a fast, secure, and widely used web browser developed by Google. While Linux distributions typically come with Firefox pre-installed, many users prefer Chrome for its features and cross-device syncing.

๐Ÿ”ง Installing Google Chrome on Ubuntu/Debian

1. Download the .deb package

You can download it via terminal:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

2. Install the package

sudo apt install ./google-chrome-stable_current_amd64.deb

๐Ÿงฐ Installing Google Chrome on Fedora / RHEL / CentOS

1. Download the .rpm package

wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

2. Install the package

sudo dnf install ./google-chrome-stable_current_x86_64.rpm

๐Ÿš€ Installing Google Chrome on Arch Linux / Manjaro

Use an AUR helper like yay:

yay -S google-chrome

๐ŸŒ Launching Google Chrome

Once installed, you can launch Chrome by searching it in your application menu or via terminal:

google-chrome-stable

๐Ÿงผ Uninstalling Google Chrome

Ubuntu/Debian:

sudo apt remove google-chrome-stable

Fedora:

sudo dnf remove google-chrome-stable

Arch:

yay -Rns google-chrome

✅ Conclusion

With this guide, you've successfully installed Google Chrome on your Linux machine. Whether you're a developer testing in multiple browsers or a casual user, Chrome brings speed and Google integration to your desktop.

VSCode: How to Install Visual Studio Code on Linux (Ubuntu, Debian, Fedora & more)

How to Install Visual Studio Code on Linux

Visual Studio Code (VS Code) is a lightweight and powerful code editor developed by Microsoft. It supports multiple programming languages and includes features like IntelliSense, debugging, and Git integration.

Step-by-Step Installation (Ubuntu/Debian-based Systems)

1. Update the Package Index

sudo apt update

2. Install Required Dependencies

sudo apt install software-properties-common apt-transport-https wget

3. Import the Microsoft GPG Key

wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg
sudo install -o root -g root -m 644 packages.microsoft.gpg /usr/share/keyrings/

4. Add the VS Code Repository

echo "deb [arch=amd64 signed-by=/usr/share/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" | sudo tee /etc/apt/sources.list.d/vscode.list

5. Install Visual Studio Code

sudo apt update
sudo apt install code

Installing on Fedora / RHEL

sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo'
sudo dnf check-update
sudo dnf install code

Installing on Arch Linux / Manjaro

Use an AUR helper like yay:

yay -S visual-studio-code-bin

Launching VS Code

After installation, launch it from your app menu or run:

code

Install Popular Extensions

code --install-extension ms-python.python
code --install-extension esbenp.prettier-vscode

Uninstalling VS Code

To remove VS Code if needed:

sudo apt remove code         # Ubuntu/Debian
sudo dnf remove code         # Fedora/RHEL
yay -Rns visual-studio-code-bin  # Arch/Manjaro

Conclusion

Visual Studio Code is a must-have tool for developers. With this guide, you can easily install and get started with VS Code on your Linux system, regardless of your distribution.

How to Install Indian Language Fonts on Linux Using sudo apt-get install fonts-indic


If you're trying to view or write in Indian languages on your Linux system and seeing square boxes or garbled text, chances are you’re missing the right fonts. Thankfully, Linux makes it easy to install them using a simple command.

What Is fonts-indic?

The fonts-indic package is a collection of TrueType fonts for several major Indian languages. It includes support for:

  • Hindi (Devanagari script)

  • Tamil

  • Bengali

  • Gujarati

  • Kannada

  • Malayalam

  • Oriya

  • Punjabi

  • Telugu

  • Sanskrit

These fonts are essential for rendering content in Indian languages correctly in browsers, documents, and desktop applications.

How to Install Indian Language Fonts on Linux

To install the fonts, open a terminal and run:

apt-get update 
sudo apt-get install fonts-indic

Here’s what each part does:

  • sudo: Grants administrative privileges (you’ll need to enter your password).

Once installed, applications like LibreOffice, Firefox, and Chrome will automatically start displaying Indian scripts properly.

Why Use fonts-indic?

  • Enables support for multiple Indian languages.

  • Improves document compatibility and readability.

  • Ensures proper display of web content in local languages.

Troubleshooting Tips

  • Still not seeing the text properly? Try restarting your browser or application.

  • Fonts not applied in LibreOffice? Change the default font in Tools > Options > LibreOffice > Fonts.

Conclusion

Installing Indian language fonts on Ubuntu or Debian-based systems is straightforward with the fonts-indic package. Whether you're reading regional news, working on multilingual documents, or coding in native scripts, this package ensures you don’t run into font display issues.

Cognizant 2022 CAMPUS HIRING

 Click To apply


Eligibility Criteria 2022 Batch


  • B.E/B.Tech/M.Tech/MCA/M.Sc IT students from 2022 batch (CSE, ECE, EEE, IT, Electronics & Telecommunication Engineering, Information Science Engineering and allied branches only)

  • Students should possess consistent academic record with 60% or greater in X, XII, Diploma, UG & PG (all subjects will be taken into consideration) calculated as below. - Aggregate% = sum of all subjects marks scored / total no. of subjects (as of last semester result declared)

  • Students with standing arrears or more than 2 years gap in education are not eligible

  • At the time of joining, recruits should have an overall aggregate score of 60% or greater (all subjects will be taken into consideration) with no standing arrears

  • Aggregate for the Students who have applied for re-evaluation (and are waiting for the results) will be derived based on the initial scores

  • CGPA to % conversion will be considered as per University norms

  • Opportunities are open only to Indian nationals


Student Information

   Mandatory documents for registration:


  • The registration link will be shared with college TPOs and the students must scan and upload the below mentioned documents into a single pdf file while registering.

    a) Resume attached with passport size photograph
    b) College ID card
    c) All academic documents including the school certificates and college semester mark sheets
    d) Govt. Id proof - Aadhar card. Passport (front & back) or PAN Card (if available)


   Documents for the interview:

  • Students should carry a soft copy of the following documents during the online interview:

    a) Resume (maximum of 2 pages) with a high-resolution passport size photograph. Please note that the photograph should be clicked in a light background and both the ears of the candidates must be visible
    b) College ID card
    c) All academic documents including the school certificates and college semester mark sheets
    d) Govt. Id proof - Aadhar card. Passport (front & back) or PAN Card (if available)

Associate - Omni Channel Operations at Myntra

 Click To appy


What will you do?

  • Work closely with Brands, Retailers and internal teams on all areas of Omnichannel Operations
  • Assist the team in expanding store network of Omni brands across the country
  • Assist the team in brand and store onboarding process
  • Work closely with Brands, Retailers and internal teams to analyse inventory and catalog status across various channels 
  • Create dashboards and MIS’s to ensure visibility of sellable inventory to all stakeholders
  • Coordinate with internal Category, Cataloging and Category Operations teams to ensure a smooth process and timely listing of styles  

Who you are?

  • Gogetter and enjoys working on targets
  • Diligent with an eye for detail
  • Meticulous and Organised with strong belief in working and adhering to processes
  • Excellent communication skills with an ability to build relationships with both senior and junior executives
  • Willing to go the extra mile to meet the overall goals and targets of order operations

Qualification?

  • Graduate / diploma (preferably from NIFT  / in Retail or Logistics Operation / ) with minimum 2+ years of experience in listing and sales planning for brands and retailers on marketplaces or their own ecommerce platforms at scale
  • Previous know how of cataloging and listing process for Myntra.com
  • Previous experience on offline store operations
  • Know how of couple of retail ERP’s (e.g. SAP, Oracle etc) and POS systems 
  • Advanced MS office skills
  • Reading and speaking capabilities of one or more regional language in addition to English and Hindi

Amazon - Data Engineer Internship

 Click to Appy


DESCRIPTION

Job Description

As a Data Engineer Intern in Amazon you will be working on building and maintaining complex data pipelines, Assemble large and complex datasets to generate business insights and to enable data driven decision making and support the rapidly growing and dynamic business demand for data.

As a Data Engineer Intern you will have an opportunity to collaborate and work with various teams of Business analysts, Managers, Software Dev Engineers, and Data Engineers to determine how best to design, implement and support solutions. You will be challenged and provided with tremendous growth opportunity in a customer facing, fast paced, agile environment

Core responsibilities may include:
· Design, implement and support an analytical data platform solutions for data driven decisions and insights
· Design data schema and operate internal data warehouses & SQL/NOSQL database systems
· Work on different data model designs, architecture, implementation, discussions and optimizations
· Interface with other teams to extract, transform, and load data from a wide variety of data sources using AWS big data technologies like EMR, RedShift, Elastic Search etc.
· Work on different AWS technologies such as S3, RedShift, Lambda, Glue, etc.. and Explore and learn the latest AWS technologies to provide new capabilities and increase efficiency
· Work on data lake platform and different components in the data lake such as Hadoop, Amazon S3 etc.
· Work on SQL technologies on Hadoop such as Spark, Hive, Impala etc..
· Help continually improve ongoing analysis processes, optimizing or simplifying self-service support for customers
· Must possess strong verbal and written communication skills, be self-driven, and deliver high quality results in a fast-paced environment.
· Recognize and adopt best practices in reporting and analysis: data integrity, test design, analysis, validation, and documentation.
· Enjoy working closely with your peers in a group of talented engineers and gain knowledge.
· Be enthusiastic about building deep domain knowledge on various Amazon’s business domains.
· Own the development and maintenance of ongoing metrics, reports, analyses, dashboards, etc. to drive key business decisions

Job Locations include: Bangalore-KA, Hyderabad-TS, Gurgaon-HR

BASIC QUALIFICATIONS

Basic Qualification:
· Candidates must be in their Final year of Bachelor or Master Course in Computer Science or Engineering or related field
· Hands-on experience in SQL
· Hands on experience in languages like Python etc.
· Knowledge of RDBMS, Big Data, NOSQL, ETL and Data-warehousing Concepts
· Candidate must have good written and oral communication skills, be a fast learner and have the ability to adapt quickly to a fast-paced development environment

PREFERRED QUALIFICATIONS

Preferred Qualification:
·
· Hands on Experience with AWS technologies like Amazon S3, EMR, Amazon RDS, Amazon Redshift etc.
· Knowledge of software engineering best practices across the development life cycle, including agile methodologies, coding standards, code reviews, source management, build processes, testing, and operations
· Knowledge of cloud services such as AWS or equivalent
· Knowledge on different reporting/visualization tools in the industry
· Sharp problem solving skills and ability to resolve ambiguous requirements

 

Click To Apply

Eligibility Criteria

Education

  • 10th Standard: 50% or above
  • 12th Standard: 50% or above
  • Graduation: 50% or 5.0 CGPA above as applicable by the university guidelines
  • Admission into EPGDBM degree will be subjected to the prevailing criteria and conditions as defined by the UGC Guidelines at the time of enrollment

  • Note:
  • 10th, 12th & UG aggregate percentage should be the sum total of marks obtained against the maximum marks in all subjects in all semesters.
  • Selective subjects or marks on the marksheet should not be considered to calculate aggregate percentage.

Year of Passing

  • 2021 ONLY
  • Maximum of 3 years of education gap is allowed between 10th and Graduation.
  • No Gaps are allowed in Graduation period. Graduation should be completed within 3 years from the start of the Graduation.

Qualification

  • BCom., BBA, BBM, BMS, BA and BSc economics Only
  • No MBA

Other Criteria

  • Only Fulltime courses. No Part-time or Correspondences or Distance learning education in either 10th or 12th or Degree. Graduation should be recognized by the Central/State Government of India.
  • No standing Arrears or backlogs at the time of selection process.
  • Should be an Indian Citizen or should hold a PIO or OCI card, in the event of holding a passport of any other country.
  • Bhutan and Nepal Nationals need to submit their citizenship certificate.
  • Candidates who have participated in any selection process held by Wipro in the last three months are not eligible.

Job Description

  • Basic Computer knowledge to troubleshoot desktop, laptop and answering support queries via phone, email, Chat and Web.
  • Excellent communication skills required as you will work in International Voice Support.
  • Managing Data and implementing changes, providing employees/Clients with guidance in handling difficult or complex problems or in resolving complaints.
  • Responding in a timely manner to service issues, request, and take care of the complete operations.
  • Troubleshoot system and network problems, diagnosing and solving hardware or software faults.
  • Provide support, including procedural documentation & relevant reports.
  • Support the rollout of new applications and manage many open cases at one time and provide accurate information on IT products or services.
  • Willing to work in a 24*7 environment (Rotational shifts/5 Days a week).

Stipend

    1st year Stipend - 15000 BASE + 488 ESI per month
    2nd year Stipend - 17000 BASE + 553 ESI per month
    3rd year Stipend - 19000 BASE + 618 ESI per month

Service Agreement

    On joining, candidates would be required to sign a service agreement for 36 months

Selection Process

  • Preliminary Screening
  • Technical Interview
  • HR Interview

It will solely be at the discretion of Wipro to permit / restrict participation of any candidate, whether eligible or not, in the selection process of DWSD 2021.

DisclaimerThe parameters and procedure of selection solely depend upon Wipro's discretion. Wipro is not liable to disclose any information at any stage of the selection process. Wipro also reserves the right to roll back any provisional offer if the provisionally selected candidate does not meet the specified conditions which are prerequisite to being boarded. Wipro also reserves the right to hold any provisionally candidate liable if he/she is proved to be involved in any illegal activity for instance: misrepresentation, fraud, production of illegal documents etc.

Wipro has not empaneled any third party for conducting recruitment drive, requisite training, collecting fees or any other processes as envisaged under this program. Also, it is to be noted that Wipro does not charge any fee at any stage of this program. Likewise, only those registrations stand valid which are made at Wipro's official recruitment website. Any communication claimed to be made on Wipro's behalf by any third party are to be considered as misrepresentation and an attempt to defraud and therefore, the same should be ignored. Wipro does not hold any responsibility towards such unauthorized communication made or believed by any.

Candidates who indulge in any kind of malpractices or utilize unfair means to clear the selection process, shall be disqualified/terminated, as the case maybe.

For any queries/clarifications, please reach out to manager.campus@wipro.com using the subject line 'DWSD-2021', the same will be responded within 3 working days

Thinkitive - Trainee Quality Analyst (Software Tester)

 Click To Apply


Thinkitive is a leading technology company, providing world-class solutions to clients all over the world. We are currently hiring for the Freshers in Pune who are aspiring to launch a career in the IT industry.

Eligibility Criteria
  • BE/B.Tech, ME/MTech in Computer Science/Information Technology/Electronics & Communications or MCA pass out in the Year 2018,2019,2020,2021 only
Skills Required:
  • Strong Communication & Interpersonal Skills
  • Problem-solving Approach
  • Software Development Life Cycle (Agile)
  • Software Testing Life Cycle
  • Functional testing
  • Test Scenarios, Test Cases Design & Management and Execution
Job Description:
  • Strong problem-solving skills
  • Basic coding knowledge
  • Should be a quick learner
  • Candidate should have good knowledge of logical & designing concepts
  • Fundamentals C,C++ & OOPs concepts is must
  • Knowledge of any one programming language is must [Java, Python]
  • Knowledge of HTML and JavaScript is required
  • Familiarity with databases
Interview Process:
  • Online Assessment Test
  • L1 Technical interview
  • L2 Technical Interview
  • Managerial & Logical Round
  • HR Round

Technical Support Representative in HP

 Click To Apply



Location(s):
Bangalore, Karnataka, India
No additional locations
Category: Services
Job ID: 3078930
Posted: 8/4/2021 7:00:00 AM
Applies basic knowledge of the job skills and company policies and procedures to complete a variety of assignments/tasks. Good understanding of the general/technical aspects of the job. Works on assignments that are routine to moderately complex in nature and require basic problem resolution and independent judgment. Allocates own time efficiently. Receives general instructions on all work.

Responsibilities:

  • Working from a standard protocol and utilizing documented processes to respond to customer issues. Some judgment may be used to supplement the outlined process.
  • Successfully resolve simple to moderate technical issues (related to hardware and software) from incoming customer contacts and proactive notification systems.
  • Respond to service, product, technical, and customer-relations questions on subjects such as features, specifications, and repairs on current and discontinued products, parts, and options, based on customer entitlement (for example more complex warranty).
  • Begin to proactively assist customers to avoid or reduce problem occurrence.
  • Work is often reviewed by Supervisor or Team Lead.

Education and Experience Required:

  • High school education or Equivalent. To adequately perform the duties of the job individuals must possess a minimum of 6 months to 1 year general experience, or equivalent college level education.

Knowledge and Skills:

  • Articulate in excellent written and verbal communication skills.
  • Experience in customer facing role either remote or face to face.
  • Computer proficiency with applicable software applications (for example Microsoft Office, CAD, Adobe Suite, programming.
  • Demonstrated problem solving skills.
  • Accuracy in data entry.
  • Excellent fluency in language to be supported.
  • Experience in a phone based remote role, e- support, e-chat, or similar.
  • Familiarity with computer technology.
  • Desirable: Knowledgeable in call routing and case management processes as well as case logging systems and obligation systems.

Business Analyst (New Grad) - India UHR

 Click To Apply


  • LOCATION:
    Bangalore, India
  • AREA OF INTEREST
    Business Strategy and Operations
  • JOB TYPE
    New Graduate
  • TECHNOLOGY INTEREST
    *None
  • JOB ID
    1337659

Job Description – Business Analyst

In Cisco, we have an outstanding opportunity where we actually get to use the technology we build!

We are Innovators

We drive innovation to propel business transformation while maintaining operational quality.

We are Accelerators

We accelerate digital solutions to generate cost savings and efficiency gains for enterprise growth and success.

We are Transformers

As customer zero, we transform the customer experience by being our own customer first with agility, quality, and security, we continuously deliver business outcomes for our clients.

What You’ll Do

Depending on the Business Function/Team you would join, your responsibilities will include a combination of the following:

Analyzes complex business problems, leveraging business and technical expertise to deliver business outcomes.

Engages with business stakeholders and cross-functional teams to understand business requirements to deliver end-to-end solutions.

Provides technical expertise to advise on solutions, including standard products and features to address business issues and opportunities.

Defines and maintains architecture standards, to ensure that application portfolio is aligned with business strategy

Develops business process architecture to onboard new offers, RTM and monetization models

Be responsible for demos as part of the CI/CD process

Innovating solutions to real business challenges

Collaborating on multiple cross-functional projects

Analyzing internal processes, data, and problems

Identifying issues and areas for improvement

Identifying new business models and benefits from enabling new capabilities

Mapping internal processes

Who You Are

  • Recent graduate or on your final year of studies towards a bachelor’s or master’s degree in Business, Management, Finance, Math, Accounting, Information Systems or related field from an accredited institution before the program start date
  • Minimum of an 8.5 CGPA or equivalent
  • The requirement is for 2022 passout only
  • Excellent analytical, problem-solving and decision-making skills
  • High levels of customer orientation and service excellence
  • Efficient collaboration skills with internal / external customers and cross-functional teams
  • Excellent communication skills, “Can do” attitude, proactive engagement, solutions seeking & team player in global environment
  • Good time management skills and the ability to prioritize work capacity

Desired Skills:

  • Delivering complex business solutions and managing business processes and policies
  • Possesses general business knowledge (sales, finance, etc.), knowledge of Cisco products, and understanding of IT functions
  • Detail oriented and data driven.
  • Comfortable with data, process flows, and systems thinking.

 Desired Competencies:

  • Demonstrated leadership and management experience
  • Able to combine technical and business considerations in analytical thinking
  • Actively contributing to business planning and insights to support decision-making in short, medium and long-term periods
  • Knowledge of industry practices and products

Associate Software Engineer

 

Click To Apply

JOB DESCRIPTION

Responsibilities

•    Responsible to understand and build study as per client requirements. 
•    Contribute to delivery of high-quality configured system or code 
•    Gain an understanding of trouble shooting and problem solving techniques 
•    Maintain compliance to training, documentation, policies and procedures 
•    Responsible to support simple and medium complexity change orders (SCRs) 
•    Responsible for required documentation as per the laid SOP’s 
•    Works collaboratively and professionally with the cross functional teams to achieve the goals. 
•    Performs other tasks as necessary. 
•    Understands role and contribution relative to project objectives 
•    Regularly uses company's global knowledge systems 
•    Able to provide ideas & process improvements for organizational growth. 
•    Meet or exceed defined levels of productivity 
•    Acquire expected competency levels within defined timelines 

Skills and Competencies

•    Skills Required : SQL (2000 &2008) , crystal report and BOBJ 
•    Additional skills preferred: Basic Clinical Domain Knowledge, Knowledge on SQL SSIS 
•    Expected high level of professionalism in the work environment. 
•    Ability to learn the domain quickly. 
•    Ability to meet and adhere to timelines as planned for study 
•    Ability to multi-task and stay organized in a dynamic work environment. 
•    Keeps up to date with new developments to ensure knowledge of the industry/area of expertise is up to date. 
•    Sound interpersonal skills 
•    Demonstrates commitment and enthusiasm towards IQVIA’s goals and objectives 


Education and Experience

•    Bachelor’s Degree in computer science or related discipline or equivalent combination of education, training and experience. 
•    0-1 years of experience in Software Development preferably work experience in clinical domain

At IQVIA, we believe in pushing the boundaries of human science and data science to make the biggest impact possible – to help our customers create a healthier world. The advanced analytics, technology solutions and contract research services we provide to the life sciences industry are made possible by our 70,000+ employees around the world who apply their insight, curiosity and intellectual courage every step of the way. Learn more at jobs.iqvia.com.

Launch HN: Syndetic (YC W20) – Software for explaining datasets https://news.ycombinator.com/item?id=22406560

Launch HN: Syndetic (YC W20) – Software for explaining datasets Hi HN, We're Allison and Steve of Syndetic ( https://www.getsyndetic.com ). Syndetic is a web app that data providers use to explain their datasets to their customers. Think ReadMe but for datasets instead of APIs. Every exchange of data ultimately comes down to a person at one company explaining their data to a person at another. Data buyers need to understand what's in the dataset (what are the fields and what do they mean) as well as how valuable it can be to them (how complete is it? how relevant?). Data providers solve this problem today with a "data dictionary" which is a meta spreadsheet explaining a dataset. This gets shared alongside some sample data over email. These artifacts are constantly getting stale as the underlying data changes. Syndetic replaces this with software connected directly to the data that's being exchanged. We scan the data and automatically summarize it through statistics (e.g., cardinality), coverage rates, frequency counts, and sample sets. We do this continuously to monitor data quality over time. If a field gets removed from the file or goes from 1% null to 20% null we automatically alert the provider so they can take a look. For an example of what we produce but on an open dataset check out the results of the NYC 2015 Tree census at https://www.getsyndetic.com/publish/datasets/f1691c5d-56a9-4... . We met at SevenFifty, a tech startup connecting the three tiers of the beverage alcohol trade in the United States. SevenFifty integrates with the backend systems of 1,000+ beverage wholesalers to produce a complete dataset of what a restaurant can buy wholesale, at what price, in any zipcode in America. While the core business is a marketplace between buyers and sellers of alcohol, we built a side product providing data feeds back to beverage wholesalers about their own data. Syndetic grew out of the problems we experienced doing that. Allison kept a spreadsheet in dropbox of our data schema, which was very difficult to maintain, especially across a distributed team of data engineers and account managers. We pulled sample sets ad hoc, and ran stats over the samples to make sure the quality was good. We spent hours on the phone with our customers putting it all together to convey the meaning and the value of our data. We wondered why there was no software out there specifically built for data-as-a-service. We also have backgrounds in quantitative finance (D. E. Shaw, Tower Research, BlackRock), large purchasers of external data, where we've seen the other side of this problem. Data purchasers spend a lot of time up-front evaluating the quality of a dataset, but they often don’t monitor how the quality changes over time. They also have a hard time assessing the intersection of external datasets with data they already have. We're focusing on data providers first but expect to expand to purchasers down the road. Our tech stack is one monolithic repo split into the frontend web app and backend data scanning. The frontend is a rails app and the data scanning is written in rust (we forked the amazing library xsv). One quirk is that we want to run the scanning in the same region as our customers' data to keep bandwidth costs and transfer time down, so we're actually running across both GCP and AWS. If you're interested in this field you might enjoy reading the paper "Datasheets for datasets" ( https://arxiv.org/pdf/1803.09010.pdf ) which proposes a standardized method for documenting datasets modeled after the spec sheets that come with electronics. The authors propose that “for dataset creators, the primary objective is to encourage careful reflection on the process of creating, distributing, and maintaining a dataset, including any underlying assumptions, potential risks or harms, and implications of use.” We agree with them that as more and more data is sold, the chance of misunderstanding what’s in the data increases. We think we can help here by building qualitative questions into Syndetic alongside automation. We have lots of ideas of where we could go with this, like fancier type detection (e.g. is this a phone number), validations, visualizations, anomaly detection, stability scores, configurable sampling, and benchmarking. We'd love feedback and to hear about your challenges working with datasets! February 24, 2020 at 11:38PM