Skip to content
View oliviagardiner's full-sized avatar
👾
pew pew
👾
pew pew

Highlights

  • Pro
Block or Report

Block or report oliviagardiner

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
oliviagardiner/README.md

My name is Olivia and I'm a software engineer coming from a static media design background. I switched to web development in 2016 and I've spent most of my time working with PHP ever since, with the occasional side quest to other languages. I define myself as a backend developer but I've worked a lot with full stack. I like to tinker with python in my free time.

I'm also less serious than what I look like :)

I like to write (not only code), you can see more of what I've been working on here: https://www.oliviagardiner.com/

Pinned Loading

  1. advent-of-code advent-of-code Public

    Solutions for multiple years puzzles

    PHP

  2. rss_visualizer rss_visualizer Public

    A python tool to download and visualize RSS feeds of news outlets

    Python

  3. Nuxt.js + vue-moment Nuxt.js + vue-moment
    1
    // components/component.vue
    2
    
                  
    3
    <template lang="pug">
    4
      div {{ new Date() | moment("dddd, MMMM Do YYYY, h:mm:ss a") }}
    5
      b-form-select(:value="locale" @change="changeLocale($event)")
  4. How to sort & filter a Yii2 active q... How to sort & filter a Yii2 active query generated with findBySql()
    1
    <?php
    2
    
                  
    3
    /**
    4
     * If you try to pass a query generated with findBySql() to an ActiveDataProvider,
    5
     * you will find that the convenient filtering and sorting methods won't work on your query,
  5. electron-whist electron-whist Public

    Scorekeeping app for the popular card game called 'Whist' using ElectronJS

    Vue

  6. [PHP] Bowling kata TDD [PHP] Bowling kata TDD
    1
    <?php declare(strict_types=1);
    2
    
                  
    3
    namespace App;
    4
    
                  
    5
    use App\Exception\GameOverException;