Skip to content
View gabidavila's full-sized avatar
💁‍♀️
I try to solve all my problems with a single SQL query.
💁‍♀️
I try to solve all my problems with a single SQL query.

Highlights

  • Pro
Block or Report

Block or report gabidavila

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
gabidavila/README.md

Gabi's Profile

Gabi

Hi I am Gabi, I also go by Gabriela D'Ávila Ferrara, Gabriela Ferrara or Gabriela D'Ávila.

My pronoun is she/her, but I am also comfortable with they/them.

I work as a Developer Advocate for Google Cloud and have past experiences as a Data Engineer and Software Engineer. I LOVE SQL

Where I write

I usually try to write at gabi.dev or medium.com/@gabidavila. Sometimes I can get fancy and appear at the Google Cloud blog, but those no one reads ;)

I can also be found at:

Resources

You can find links of my talks on this Youtube Playlist: Talks and slides on SlideShare

Projects

Office Hours

I have Office Hours to talk about Google Cloud and Databases. You can find my schedule here: gabi.tips/office-hours.

Congress Who Is?

It's a Civic Tech project that needs a bit of updating, let me know if you want to help congresswhois.com.

React USA Map - a US Map without using D3

This one I REALLY NEED HELP, I don't keep up to date to React anymore, and there are tons of requests of people asking for new features and I simply don't have the bandwith to help them, please contact me if you are interested: react-usa-map

Pinned

  1. fizzbuzz.sql fizzbuzz.sql
    1
    WITH RECURSIVE fizz_buzz (sequence, modulo_3, modulo_5) AS (
    2
      SELECT 1, CAST('' AS CHAR(4)), CAST('' AS CHAR(5))
    3
      UNION ALL
    4
      SELECT sequence + 1,
    5
             IF(MOD(sequence + 1, 3) = 0, 'Fizz', ''),
  2. binary_tree.sql binary_tree.sql
    1
    WITH RECURSIVE traversed (id, name, path, `left`, `right`) AS (
    2
      SELECT id,
    3
             name,
    4
             CAST(JSON_ARRAY(id) AS JSON),
    5
             `left`,
  3. backend-congresswhois-api backend-congresswhois-api Public

    Current Congress Index with ProPublica data

    Ruby 2

  4. congress-index congress-index Public

    JavaScript 3 1

  5. react-usa-map react-usa-map Public

    React component with all USA States with customizable options. No D3 needed.

    JavaScript 81 85

  6. github-move-repositories github-move-repositories Public

    Tool for Transferring ownership of repositories on GitHub

    Ruby 4 1