Skip to content

Instantly share code, notes, and snippets.

View cheeyeo's full-sized avatar
💭
Researching on use of transformers in computer vision

Chee Yeo cheeyeo

💭
Researching on use of transformers in computer vision
View GitHub Profile
@cheeyeo
cheeyeo / link.md
Created February 20, 2015 20:51
Content security policy and related gems
@cheeyeo
cheeyeo / Gemfile
Last active August 29, 2015 14:13 — forked from mattbrictson/Gemfile
gem 'dragonfly', '~>0.9.4'
group :production do
gem 'fog' # for Amazon S3
end
@cheeyeo
cheeyeo / keybase.md
Last active August 29, 2015 14:12 — forked from ismasan/keybase.md

Keybase proof

I hereby claim:

  • I am ismasan on github.
  • I am ismasan (https://keybase.io/ismasan) on keybase.
  • I have a public key whose fingerprint is 3E67 5E59 B46D D332 2669 6883 2AA1 2B6D 5825 B214

To claim this, I am signing this object:

@cheeyeo
cheeyeo / Procfile
Last active August 29, 2015 14:12 — forked from jbhannah/Procfile
web: bundle exec puma -p $PORT config.ru
@cheeyeo
cheeyeo / test.exs
Last active September 25, 2022 19:56
Example of mocking a web api in ExUnit in Elixir using Meck
# https://github.com/eproxus/meck
# add meck as a dependency in mix.exs
defmodule GithubIssuesTest do
use ExUnit.Case
import :meck
setup_all do
new(Issues.GithubIssues)
on_exit fn -> unload end