Skip to content

Instantly share code, notes, and snippets.

View aarkerio's full-sized avatar
🐵
Echando rostro en Ixtapa.

Manuel Montoya aarkerio

🐵
Echando rostro en Ixtapa.
View GitHub Profile
Query to get the last one:
db.fundraisers.find().sort({'_id': -1}).limit(1)
Result:
[
{
_id: ObjectId("6769c7c016906665787708e1"),
event_name: 'RHA Gala',
@aarkerio
aarkerio / auth0_authentication_helper.rb
Last active January 22, 2025 18:56
auth0 devise rspec authentication helper
def login_auth0(user)
OmniAuth.config.test_mode = true
# The mock_auth configuration allows you to set per-provider (or default)
# authentication hashes to return during integration testing.
opts = {
provider: 'auth0',
uid: user.auth0_id,
info: {
email: user.email,
@aarkerio
aarkerio / install matching chrome driver.txt
Created January 8, 2025 19:08
Install matching chrome and chromedriver
1) Check your current chrome version:
$ google-chrome --version
Google Chrome 131.0.6778.264
2) Download the chromedriver for your version:
$ npx @puppeteer/browsers install [email protected]
@aarkerio
aarkerio / donations_controller_spec.rb
Last active July 2, 2023 18:40
Rails 6 Rspec: Validates json web token API request with signed cookie
# frozen_string_literal: true
RSpec.describe Api::V2::DonationsController, type: :request do
let(:donor) { Fabricate(:donor) }
before do
cookies = ActionDispatch::Request.new(Rails.application.env_config.deep_dup).cookie_jar
@tmp = cookies.signed[:donor_jwtapi] = { value: { token: donor.token} , httponly: true }
end
@aarkerio
aarkerio / set_heroku_vars.rb
Last active March 6, 2023 17:14
set_heroku_vars
require 'json'
raw_data = File.read('prod_vars.json')
# {"ASSET_HOST": "https://foo.cloudfront.net", }
vars_info = JSON.parse(raw_data);
puts "### vars_info ###>> #{vars_info.inspect}"
@aarkerio
aarkerio / mv.sql
Created August 26, 2022 18:46
PGSQL Materialized view
CREATE MATERIALIZED VIEW products_shopify_ids_on_active_shops AS
SELECT shopify_domain, array_agg(col ORDER BY col) AS product_shopify_ids
FROM (
SELECT DISTINCT
shops.shopify_domain AS shopify_domain,
unnest(offers.offerable_product_shopify_ids) AS col
FROM shops
INNER JOIN offers
ON shops.id = offers.shop_id
INNER JOIN subscriptions
You already have a Rails app with RVM so, install flycheck Ruby on Emacs 27:
1) Add rubocop to your Gemfile and bundle.
2) Install flycheck on Emacs and configure:
(add-hook 'after-init-hook #'global-flycheck-mode)
3) Install RVM package from Melpa and setup:
@aarkerio
aarkerio / ip.sh
Created July 16, 2021 05:25
Heroku Postgresql upgrade
1) Check your database name
heroku pg:info --app incartupsell | grep HEROKU
HEROKU_POSTGRESQL_GREEN_URL
1) Provision a Follower
heroku addons:create heroku-postgresql:standard-2 --follow HEROKU_POSTGRESQL_GREEN_URL --app incartupsell
@aarkerio
aarkerio / flatpickr.html
Created May 21, 2021 19:39
If flatpickr doesn't work, this is a minimal example.
<!doctype html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" crossorigin="anonymous"></script>
<title>Examples - flatpickr</title>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.css>
</head>
<body>
<h2>aHUEVO prros!!</h2>
@aarkerio
aarkerio / offer.rb
Created May 18, 2021 17:33
Group and order array by frequency
# Private: order companions by frequency.
#
# orders - Array of hashes.
#
# Returns Hashmap.
def companions(orders)
orders.reduce([]) {|acc, o| acc + o[:unique_product_ids]}.group_by(&:itself).transform_values!(&:size)
.sort{ |a,b| b.second <=> a.second }.first(15)
end