I hereby claim:
- I am jefft on github.
- I am jeff_redradish (https://keybase.io/jeff_redradish) on keybase.
- I have a public key ASBf5ihTt2H_mkG_DLPtJLECZUcZtp_ETU_bYdCY-FLnaQo
To claim this, I am signing this object:
#!/bin/bash | |
# Script to check whether a Debian/Ubuntu system will experience boot problems from https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1889556 / https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1889509 | |
# https://www.redradishtech.com/display/~jturner/2020/07/30/symbol+%27grub_calloc%27+not+found+--+how+to+fix+on+AWS | |
pass() | |
{ | |
echo "All good. $*" | |
exit | |
} |
#!/bin/bash | |
################################################################### | |
# check_postfix_mailqueue is developped with GPL Licence 2.0 | |
# | |
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt | |
# | |
# First version developped by : Bjoern Bongermino | |
# | |
################################################################### | |
# This program is free software; you can redistribute it and/or |
/** | |
* 'Tempo Team Name' script Field that renders the issue's Tempo Team name, if any. | |
* The plain tempo 'Team' field renders as an integer in CSV and Issue Editor views. | |
* Use this field instead to render the team name. | |
* | |
* https://www.redradishtech.com/pages/viewpage.action?pageId=24641537 | |
* [email protected], 23/Jul/20 | |
*/ | |
import com.atlassian.jira.component.ComponentAccessor | |
import com.atlassian.jira.issue.fields.CustomField |
I hereby claim:
To claim this, I am signing this object:
PROBLEM | |
After: | |
- upgrading JIRA from 7.1.2 to 7.9.0 | |
- With Hiptest plugin (v1.2.2) installed | |
- In an issue, add a Hiptest scenario URL of the form https://app.hiptest.com/projects/*/test-plan/folders/* | |
- Viewing a Scrum board backlog | |
- ..and clicking an issue to view the preview on the right. | |
One gets a Javascript error: |
-- A variant of the built-in 'convert_from' function that doesn't give up when it encounters invalid characters, but rather replaces them with 0x hex equivalents. | |
-- The last 'locator' arg lets you specify which record you're processing. | |
-- | |
-- Sample use: | |
-- jira=# select convert_from_or_escape('Invalid chars: \344\274\232\345\223\241\350\252?\350\250\274\343\203\207\343\203\242\343\203\232\343\203\274\343\202\270\343?\270\343\202\210\343?\206\343?\223\343??\357\274?</h3>'::bytea, 'utf-8', 'At table foo line 123'); | |
-- NOTICE: At table foo line 123: Replacing bad chars '0xe8 0xaa 0x3f' with '0xe8aa3f' | |
-- NOTICE: At table foo line 123: Replacing bad chars '0xe3 0x3f 0xb8' with '0xe33fb8' | |
-- NOTICE: At table foo line 123: Replacing bad chars '0xe3 0x3f 0x86' with '0xe33f86' | |
-- NOTICE: At table foo line 123: Replacing bad chars '0xe3 0x3f 0x93' with '0xe33f93' | |
-- NOTICE: At table foo line 123: Replacing bad chars '0xe3 0x3f 0x3f' with '0xe33f3f' |