How To

Coding Programmer svn
SVN Command to manage tracking of personal projects.
March 11, 2019
0
I was recently working on some of projects of my start-up. I wanted to make sure that I can see the revision logs of my project source code so that I can find why I have changed the code & in case accidental delete of a running good code I can restore by reviewing the […]
git How To
Create and push a branch
September 27, 2018
0
$ git fetch && git checkout your_branch_name $ git add . $ git commit -m “adding a change from the feature branch” $ git push origin your_branch_name Reference: https://confluence.atlassian.com/get-started-with-bitbucket/create-and-push-a-branch-862720857.html
How To Java Programming Uncategorized
How to Code Signing to Your Java Project
January 9, 2018
0
Recently I was developing an App using Java that will be launched from Website Directly using JNI Technique. I have created a Jar file. But problem is your Jar File will be not leaded or run if the Jar File is not signed with any Code Signing Certificate.   You must generate the CSR from […]
How To Programmer Security Server
Fixing Email Scrap in your XML API when you use CoudFlare
September 3, 2017
0
, ,
Fixing Email Scrap in your XML API when you use CoudFlare
Recently I am using CloudFlare for one of my server. We give XML API support for one of our product. When any developer is trying to get their Order Details though our Shopping Cart API recently, somehow in the XML, all emails are scrapped.  Even I have found that, some additional javascript is added in […]
How To
How to Download Udemy Course for Offline Reading
September 30, 2016
0
How to Download Udemy Course for Offline Reading
First Install PIP in your server: # sudo curl https://bootstrap.pypa.io/get-pip.py | sudo python # cd /tmp # git clone https://github.com/nishad/udemy-dl.git Download the udemy-dl software from git, then Install udemy-dl (Udemy Course Downloader) running the below command: #pip install udemy-dl Now Download the course that you have purchased already: # udemy-dl https://www.udemy.com/COURSE_NAME For example, I have […]