In PostgreSQL 12 they disallowed the PANIC value for client_min_messages, that Rails was setting since 2.3.14. That was fixed in Rails 4.2.5.
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
| function run(input, parameters) { | |
| const appNames = []; | |
| const skipAppNames = []; | |
| const verbose = true; | |
| const scriptName = 'close_notifications_applescript'; | |
| const CLEAR_ALL_ACTION = 'Clear All'; | |
| const CLEAR_ALL_ACTION_TOP = 'Clear'; | |
| const CLOSE_ACTION = 'Close'; |
NOTICE: This guide is no longer relevant, as a lot has changed over time and Go supports Apple Silicon natively just fine now!
Follow these short instructions on how to compile Go for Apple Silicon (M1). From here on out, we may simply refer to it as the "ARM device".
This entire process should only take about 5-10 minutes, but please read through everything carefully, in order to avoid any potential issues along the way.
Note that at the time of writing this, Go was not yet officially available for Apple's ARM.
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
| /* ISC License | |
| Copyright (c) 2020, Rasmus Andersson <rsms.me> | |
| Permission to use, copy, modify, and/or distribute this software for any | |
| purpose with or without fee is hereby granted, provided that the above | |
| copyright notice and this permission notice appear in all copies. | |
| THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
| WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
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
| #!/bin/sh | |
| ADMIN_URL="$1"; | |
| ORIG="$2"; | |
| COPY="$3"; | |
| # Create the COPY queue. | |
| curl "$ADMIN_URL/api/queues/%2F/$ORIG" \ | |
| | curl -X PUT "$ADMIN_URL/api/queues/%2F/$COPY" -d @-; |
- https://myapp1.com => OK
- https://www.myapp1.com/ => OK
- http://myapp1.com/ => OK
- http://www.myapp1.com/ => OK
- https://mystaticsite.com => OK
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
| #!/bin/bash | |
| # Fork of CHOCK's original tot.sh to add support for dot "0" to target | |
| # the first empty dot. | |
| # https://gist.github.com/chockenberry/d33ef5b6e6da4a3e4aa9b07b093d3c23 | |
| # | |
| # 2 Mar 2020 | |
| # + Incorporated suggestions from ShellCheck (https://www.shellcheck.net). | |
| # Thanks to Ramsey Dow. | |
| # + Changed call to `python` to `/usr/bin/python` to get Python 2, avoiding |
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
| vagrant-mysql% grep ada /var/run/dmesg.boot | |
| ada0 at ata0 bus 0 scbus0 target 0 lun 0 | |
| ada0: <VBOX HARDDISK 1.0> ATA-6 device | |
| ada0: Serial Number VB95af0d4a-496c8996 | |
| ada0: 33.300MB/s transfers (UDMA2, PIO 65536bytes) | |
| ada0: 65536MB (134217728 512 byte sectors) | |
| ada1 at ahcich0 bus 0 scbus2 target 0 lun 0 | |
| ada1: <VBOX HARDDISK 1.0> ATA-6 SATA 2.x device | |
| ada1: Serial Number VB31616783-08bbc3fa | |
| ada1: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) |
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
| name: Update Gems After Dependabot | |
| on: | |
| push: | |
| branches: | |
| - 'dependabot/bundler/**' | |
| paths: | |
| - 'Gemfile.lock' | |
| jobs: |