This file contains 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
-- Set stickiness by **application** | |
-- Terminal available on all workspaces | |
if (get_application_name() == "Terminal") then | |
stick_window(); | |
end | |
-- Set stickiness and size by **window** | |
if (string.match(get_window_name(), "Pomodoro Logger")) then | |
stick_window(); | |
set_window_size (850, 600); |
This file contains 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
# Frase <-> WordPress integration | |
It works and it's clean. Some minor UX tweaks and availing of more WP API functionality would improve the process. | |
### Passwords are shown in the clear on Frase's Integration and Publish screens: | |
* minor UX issue w typing password in the clear | |
* more-than-minor to UX / expectations / familiar patterns | |
* Frase requests the password with each Frase -> WP publish event |
This file contains 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
Even with minor updates, elasticsearch often fails. | |
tl;dr: removing and re-installing plugins resolves the issue | |
> sudo /usr/share/elasticsearch/bin/elasticsearch-plugin remove ingest-attachment | |
> sudo /usr/share/elasticsearch/bin/elasticsearch-plugin install ingest-attachment | |
(ingest-attachment is the lone es plugin I'm currently running) |
This file contains 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
https://github.com/smcnally/GP-IQ/commit/53afcc3a3f6dfe118e83c9feadf586c6de88991a#r38218311 | |
let scoreLabel = props.scoreLabel; | |
let successImg = props.successImg; | |
let bio = props.bio; | |
// ad naseum | |
if (scoreLabel) { | |
scoreLabel = <p className="result-answer" dangerouslySetInnerHTML={{__html: props.scoreLabel}} />; | |
} else { |