Check if an index is still being created.
The following should return something if an index is still being created on another process.
SELECT
a.datname,
l.relation::regclass,
| export PATH="/opt/homebrew/opt/openssl@3/bin:$PATH" | |
| export LDFLAGS="-L/opt/homebrew/opt/openssl@3/lib" | |
| export CPPFLAGS="-I/opt/homebrew/opt/openssl@3/include" | |
| export ICUCFLAGS="-I$(brew --prefix icu4c)/include" | |
| export ICULIBS="-L$(brew --prefix icu4c)/lib -licui18n -licuuc -licudata" | |
| rtx install [email protected] |
| app = "app-name" | |
| kill_signal = "SIGINT" | |
| kill_timeout = 5 | |
| [deploy] | |
| release_command = "bin/hanami db migrate" | |
| [env] | |
| HANAMI_ENV="production" |
| #!/bin/bash | |
| ### | |
| # Script for uprading Elasticsearch to version 7.2.1 | |
| # | |
| # Before running this script, please reset your dependency cache in Project Settings > Admin. | |
| # | |
| # Add the line below to your Setup commands in Project Settings (without the # at the beginning): | |
| # | |
| # wget https://gist.github.com/dNitza/8672749e99d52157e6821477ff64ba89/raw/elasticsearch-upgrade-semaphore.sh ; sudo bash elasticsearch-upgrade-semaphore.sh |
| #!/bin/bash | |
| # Thanks to https://gist.github.com/alexeckermann/3f6a051e876e4c03e3b6341b7b05a7ad | |
| # Execute this script to be notified when the WWDC 2019 Platforms State of the Union is available. | |
| # Make sure this file is `chmod +x` to run in your Terminal. | |
| while true | |
| do |
I hereby claim:
| 'use strict'; | |
| var App = App || {}; | |
| App.PhotoContainerView = Backbone.View.extend({ | |
| el: '.photos-container', | |
| scrollY: 0, |
| /* global App:false */ | |
| 'use strict'; | |
| var Lib = Lib || {}; | |
| Lib.DistanceView = Backbone.View.extend({ | |
| latitude: 0, |
| @mixin dimensions($width: auto, $height: auto) { | |
| width: $width; | |
| height: $height; | |
| } |