Head over to RaviSagar.com & and you will see a site, my site :) yet another site but this one is different. This site has a dot com domain which I wanted to get for a long time. Believe it or not this domain was on sale for $2500 something dollars for years. I guess nobody bought it all these years and it was released in the market. I bought it immediately. Now since I already have this Drupal site and one more www.ravi.pro which I publish using only Emacs Org Mode, I wanted to do something different with RaviSagar.com. This site is 100% HTML, CSS and a bit of Javascript to pull in my latest posts from this site.
I searched online and found some script to convert RSS XML into HTML. I modified them little bit and wrote this one.
$(document).ready(function() {
//…
There was a question on the community about backup and restore strategy.
We currently have daily xml backups , however we would like to have a robust database backup and restoration strategy in place for our JIRA and Confluence applications. We are using postgresql 9.5.15. Can someone list down the steps to backup and restore DB. Appreciate if you can provide your inputs on the same.
Yes, apart from the xml backups you can definitely and should configure db and file system backups.
Write simple shell script to take file system backups and move them to another location. Configure cron to run these scripts.
For postgresql this page has all the information about using pg_dump for 9.5. You can configure them using shell scripts as well.
May be also configure…
There was a question on the community.
Looking for a way to create a link that would automatically bring the user to a create screen with the project and issue type already selected.
http://JIRAURL/secure/CreateIssue.jspa?pid=10002&issuetype=10102
Of course replace the pid and issue type id. You can also read Atlassian documentation as well.
There is a feature called Script Variables to store sensitive information in variables that you can access in your script.
Create variables like FIRST_NAME, LAST_NAME, URLSTRING and PASSWORD with some values. To access them in your script try this below.
logger.info("First Name: " + FIRST_NAME)
logger.info("Last Name: " + LAST_NAME)
logger.info("URL: " + URLSTRING)
logger.info("Password: " + PASSWORD)