I hereby claim:
- I am tagliala on github.
- I am tagliala (https://keybase.io/tagliala) on keybase.
- I have a public key whose fingerprint is 8F1A 55B5 E8B3 9F60 590E FDF7 4A63 4443 0AD4 E29F
To claim this, I am signing this object:
| // 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) { |
| # 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 |
| @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; |
| # 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 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. ## |
| 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; | |
| --- |
| definePopupClass = -> | |
| ###* | |
| # A customized popup on the map. | |
| # @param {!google.maps.LatLng} position | |
| # @param {!Element} content | |
| # @constructor | |
| # @extends {google.maps.OverlayView} | |
| ### |
| # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | |
| # yarn lockfile v1 | |
| "@types/[email protected]": | |
| version "0.0.38" | |
| resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.38.tgz#c1be40aa933723c608820a99a373a16d215a1ca2" | |
| "@types/node@*": | |
| version "10.1.2" |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| if mysql --version | grep -q "Distrib 5.6" | |
| then | |
| echo "Deactivating MySQL 5.6"; | |
| mysql.server stop | |
| brew unlink mysql56 | |
| mv /usr/local/var/mysql /usr/local/var/mysql56 | |
| mv /usr/local/var/mysql.prev /usr/local/var/mysql | |
| brew link mysql |