This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| # Compare the previous =~ predicates with the current match? predicates inside | |
| # the real Temple methods that changed. | |
| # | |
| # Run one Ruby version: | |
| # MISE_RUBY_VERSION=3.3.12 mise exec -- ruby bench_match_predicate.rb | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| require 'bundler/inline' | |
| require 'fileutils' | |
| begin | |
| gemfile(true) do | |
| source 'https://rubygems.org' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 1. Download https://www.six-group.com/dam/download/financial-information/data-center/iso-currrency/lists/list-one.xml | |
| // 2. Open the downloaded file in your browser | |
| // 3. Launch the development console and run this script | |
| (() => { | |
| const entries = [...document.querySelectorAll('CcyNtry')]; | |
| const isoMinorUnits = entries.reduce((acc, entry) => { | |
| const code = entry.querySelector('Ccy')?.textContent; | |
| if (!code) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # syntax=docker/dockerfile:1 | |
| # check=error=true | |
| # This Dockerfile is designed for production, not development. Use with Kamal or build'n'run by hand: | |
| # docker build -t rails8 . | |
| # docker run -d -p 80:80 -e RAILS_MASTER_KEY=<value from config/master.key> --name rails8 rails8 | |
| # For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html | |
| # Make sure RUBY_VERSION matches the Ruby version in .ruby-version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @use "sass:math"; | |
| $calendar-padding-y: math.div($spacer, 3) !default; | |
| $calendar-padding-x: math.div($spacer, 3) !default; | |
| $calendar-active: $primary !default; | |
| $calendar-hover: $primary !default; | |
| .ui-datepicker { | |
| display: none; | |
| padding: $popover-body-padding-y $popover-body-padding-x; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Create postgis.control | |
| /usr/local/opt/postgresql@11/share/postgresql@11/extension/postgis.control | |
| # Manually move files to postgres folder | |
| cp /usr/local/Cellar/postgis/3.0.1/lib/*.so /usr/local/Cellar/postgresql@11/11.7/lib | |
| cp /usr/local/Cellar/postgis/3.0.1/share/postgis/*.* /usr/local/Cellar/postgresql@11/11.7/share/postgresql@11/extension | |
| # Pin formuale |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This file contains any messages produced by compilers while | |
| running configure, to aid debugging if configure makes a mistake. | |
| It was created by PROJ configure 6.0.0, which was | |
| generated by GNU Autoconf 2.69. Invocation command line was | |
| $ ./configure --prefix=/app/.heroku/vendor | |
| ## --------- ## | |
| ## Platform. ## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 146,149c145 | |
| < -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1); | |
| < -webkit-transition-delay: 0ms; | |
| < -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| < -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| --- | |
| 181,182c177,179 | |
| < transform-origin: left top; | |
| < -webkit-font-smoothing: antialiased; | |
| --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| definePopupClass = -> | |
| ###* | |
| # A customized popup on the map. | |
| # @param {!google.maps.LatLng} position | |
| # @param {!Element} content | |
| # @constructor | |
| # @extends {google.maps.OverlayView} | |
| ### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | |
| # yarn lockfile v1 | |
| "@types/estree@0.0.38": | |
| version "0.0.38" | |
| resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.38.tgz#c1be40aa933723c608820a99a373a16d215a1ca2" | |
| "@types/node@*": | |
| version "10.1.2" |
NewerOlder