Skip to content

Instantly share code, notes, and snippets.

View francesc's full-sized avatar

Francesc Pla francesc

View GitHub Profile

Data engineer

About SeQura

SeQura builds financial services for the commerce sector, online and offline. By removing the biggest obstacles in the checkout process and the need to pay everything up front, we make consumers more confident and willing to buy the things they want. This increases conversion rates and basket sizes for retailers. We do this while actually decreasing the retailers financial risk, and all they have to do is integrate our simple API.

We've had a great market reception so far, and after five years on the market the business model is totally validated and as we continue growing we are completing our engineering team to face all the new challenges.

Job Description

We have a huge need for curated, trustable, real time data in all the domains of the company. This is especially true (but not only) for the Risk and Customer Experience areas that are eager for data, dashboards and reports.

We are at the point of reorganising and professionalizing the Data / BI Department. Traditiona

@francesc
francesc / frontend-2018.md
Last active May 28, 2018 10:08
Frontend developer at sequra

Frontend developer

About SeQura

SeQura is a Spanish company founded in 2013 to solve the main challenges on commerce: trust and flexibility. Our main objective is to improve the buying experience. We believe that buying online should be as easy as it has always been in traditional commerce. One should try and touch the product he wants to buy before paying for it.

What we do is give customers tools with which they buy freely, without long processes, in more fair and transparent conditions, and without small print. The future of payment in ecommerce is in what is fair and transparent, in what is common sense.

We provide e-retailers with a solution to reduce consumer thresholds, improving conversion rates and raising average basket sizes while securing certainty of payment. Providing at the same time, comfort, security and flexibility to the online consumers.

We’re already present in more than 650 shops, with the goal of reaching 800 by the end of 2017. We've had a great market reception so far, more

Keybase proof

I hereby claim:

  • I am francesc on github.
  • I am francesc_pla (https://keybase.io/francesc_pla) on keybase.
  • I have a public key ASCuQLshX5ZIgHvfrBcPSEiLPnbr76ZNtlnoB-AkJIYvJwo

To claim this, I am signing this object:

@francesc
francesc / utf8encode.rake
Created December 12, 2010 19:03
Manage the UTF-8 encoding header for ruby 1.9
desc "Manage the encoding header of Ruby files"
task :utf8_encode_headers => :environment do
files = Array.new
["*.rb", "*.rake"].each do |extension|
files.concat(Dir[ File.join(Dir.getwd.split(/\\/), "**", extension) ])
end
files.each do |file|
content = File.read(file)
next if content[0..16] == "# coding: UTF-8\n\n" ||