Categories
Archives
- December 2020
- November 2020
- October 2020
- September 2020
- August 2020
- July 2020
- June 2020
- May 2020
- April 2020
- March 2020
- February 2020
- January 2020
- December 2019
- November 2019
- October 2019
- September 2019
- August 2019
- June 2019
- May 2019
- April 2019
- March 2019
- February 2019
- January 2019
- December 2018
- November 2018
- October 2018
- September 2018
- August 2018
- September 2017
- June 2017
- May 2017
- January 2017
- November 2016
- October 2016
- September 2016
- August 2016
- July 2016
- May 2016
- April 2016
- February 2016
- December 2015
- October 2015
- September 2015
- August 2015
- June 2015
- May 2015
- April 2015
- March 2015
- December 2014
- November 2014
- October 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- November 2012
- October 2012
- September 2012
- August 2012
- June 2012
- April 2012
- January 2012
- December 2011
- October 2011
- September 2011
- August 2011
- July 2011
- May 2011
- March 2011
- January 2011
- August 2010
- April 2010
- February 2010
Monthly Archives: March 2020
Fabric CA Step by Step – Part 2
Restart Fabric CA server. This time we don’t use -b switch since we have a fabric-ca-server-config.yaml from previous run. Even if we used -b switch it will be ignored. note that it says 2020/03/27 10:38:13 [INFO] The CA key and … Continue reading
Step by Step with Fabric CA
fabric-ca-server (v. 1.4.5) can be started without giving it any config or its own self-identity (public cert and private key) from an empty directory run below command. in below bob is the bootstrap user and bobpw is his password. we … Continue reading
Steps to add Like button to your custom installation of wordpress
WordPress (WP for short) does not come with any like button functionality built-in. You have two choices to add the like button. Use a 3rd party plugin. The caveat with these is that they will send your data to a … Continue reading
What is Quantum Computing – Part II
1. Summary Definition (from Jack Hidary’s book): A quantum computer is a device that leverages specific properties described by quantum mechanics to perform computation. A quantum computer is not a parallel computer. Any quantum computation is described by a series … Continue reading
Posted in Software
Leave a comment
Fabric JIRA queries and links to uncommon resources
To see the issues that I am watching (https://stackoverflow.com/a/45876107/147530) https://jira.hyperledger.org/browse/FAB-17584?jql=key%20in%20watchedIssues()%20ORDER%20BY%20created%20DESC or navigate to Issues -> Search and type key in watchedIssues() ORDER BY created DESC To see the issues I have filed https://jira.hyperledger.org/browse/FABN-1234?jql=reporter%20%3D%20siddjain or type reporter = siddjain in search … Continue reading
A note on how environment variables are handled in Bash
Say you have a bash script that looks like where some_program is just some executable. Further this script is executed like Observation: the variable FOO=bar will make it to some_program whereas SOME_VARIABLE=hello will not. To pass SOME_VARIABLE=hello to some_program turn … Continue reading
Posted in Software
Leave a comment
Debugging Go code with Delve Command Line Debugger
This post contains some notes on how to debug Hyperledger Fabric codebase that is written in Go. It is not meant to be an exhaustive tutorial and there can be gaps in documentation. The intent is to capture some notes … Continue reading
Posted in Software
Leave a comment