So few weeks ago I started learning Node.js and made a URL Shortener. I am quite happy with the progress so far but I am struggling to keep myself motivated. Apart from learning from some YouTube videos I am also doing a course on Udemy. I do that everyday in the morning. However I get bored very easily from following a course. so I thought why not I share my journey. I think the best way to learn something is to also share what you learned.
Without wasting any time let us try to understand what is Node.js?
Wikipedia says
Node.js is an open-source, cross-platform, back end, JavaScript runtime environment that executes JavaScript code outside a web browser.
So it means I guess that you are using JavaScript code in the backend and not…
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.