I am seriously thinking of moving to PeerTube. I found that there are way to also sync your YouTube videos to PeerTube and that would be great. Let us see how it goes. I will update you guys. Till then enjoy.
You can install Syncthing on your mac using brew.
brew install syncthing
Then start the service.
brew services start syncthing
Open http://localhost:8384/ in your browser and you are done.
Some time back Dreamhost stopped supporting PHP56 and moved to PHP7.x by default and some of my sites stopped working.
However there is a way to run those old site. Just add the following lines in your .htaccess file.
AddHandler fcgid-script .php
FCGIWrapper "/dh/cgi-system/php56.cgi" .php
Enjoy! but upgrade them to Drupal 8, if your client is paying for it ofcourse.
There was a question about sending issue details and all the comments added on the issue as an email using script post-function.
Solution
1. Try this for priority.
${issue.priority.name}
2. For last comment try this.
${com.atlassian.jira.component.ComponentAccessor.getCommentManager().getLastComment(issue).body}
For all comments try this.
<ul>
${com.atlassian.jira.component.ComponentAccessor.getCommentManager().getComments(issue).collect{'<li>'+it.body+'</li>'}.join('<br>')}
</ul>
If your code is more than one line then try something like this.
<%
def lastComment = com.atlassian.jira.component.ComponentAccessor.getCommentManager().getLastComment(issue…
Seems like kid will stay at home for more time. Teaching kids at home is really thought and I was trying to find some interesting downloadable worksheets on various topics like Maths, English and general studies but I couldn't find good free options so the last few months of have been working on creating my own worksheets which I will also release. Do let me know if you are interested.
I made plenty of videos on my YouTube channel just focussed on Portfolio for Jira, those videos are structured properly as a course that you can take to learn Advanced Roadmaps. However YouTube is not always great and it is easy to get lost. So you can follow that course here on my site. Here is the link to the course. Apart from the videos you might also find quizzes to validate your learning and some important articles to help you. Enjoy.
I clone some public repositories on my computer and then make changes to it but those changes are important for me so I want to version control them as well.
The idea is to one repository to pull from and another repository to push to, you can do that by adding a separate push repo url.
git remote set-url --push origin https://USERNAME@bitbucket.org/ USERNAME/REPO.git
I hope it helps.