Skip to content

Instantly share code, notes, and snippets.

View julianguyen's full-sized avatar
💜
Stay rested

Julia Nguyen julianguyen

💜
Stay rested
View GitHub Profile
@Vigrond
Vigrond / jellyfinchromecast.md
Last active April 14, 2024 06:16
Jellyfin with Chromecast
@remarkablemark
remarkablemark / README.md
Last active November 14, 2023 08:55
How to mock `window.location.reload` in Jest and jsdom: https://remarkablemark.org/blog/2018/11/17/mock-window-location/
@naesheim
naesheim / buildWhenAffected.sh
Last active November 28, 2022 20:20
CircleCi - only build features that has changed
##################
### config.yml ###
##################
version: 2
jobs:
build:
docker:
- image: circleci/python:3.6
steps:
@adamrobbie
adamrobbie / Gemfile
Created November 13, 2012 15:28
Rails Endless pagination
gem 'will_paginate'
@zhengjia
zhengjia / capybara cheat sheet
Created June 7, 2010 01:35
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')