-
Recent Posts
Categories
Archives
- April 2026
- March 2026
- February 2026
- January 2026
- December 2025
- April 2025
- March 2025
- January 2025
- November 2024
- October 2024
- August 2024
- June 2024
- May 2024
- April 2024
- March 2024
- February 2024
- January 2024
- December 2023
- November 2023
- October 2023
- September 2023
- August 2023
- July 2023
- June 2023
- May 2023
- April 2023
- March 2023
- February 2023
- January 2023
- December 2022
- November 2022
- October 2022
- September 2022
- August 2022
- July 2022
- June 2022
- May 2022
- April 2022
- March 2022
- February 2022
- January 2022
- December 2021
- November 2021
- September 2021
- August 2021
- July 2021
- June 2021
- May 2021
- April 2021
- March 2021
- February 2021
- 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
Category Archives: Software
Generating random passwords
[software] here is a useful command to generate a random password from the command line change the last argument to change the length of the password
Posted in Software
Leave a comment
How to change the maximum file size you can upload to wordpress
Spent a lot of time figuring this out and trying out different things suggested by different sites so thought would make a note of it. Its actually quite simple once you know what you need to do. All you need … Continue reading
Understanding Docker Volumes
Docker volumes are a complicated beast. They can be created using the `docker volume create` command or in the docker-compose.yaml file under the volumes section. E.g.: What this does is create persistent storage on the host that 1. does not … Continue reading
Posted in Software
Leave a comment
Cryptogen 1.4.3 Bugs
As is common for Fabric, the cryptogen utility (1.4.3) has various bugs as of this writing: The most important bug is that the admincerts folder is empty. see https://jira.hyperledger.org/browse/FAB-16933 The next bug (FAB-16936) is that if you are enabling Node … Continue reading
Understanding Node OUs in Fabric
ever seen this in configtx.yaml and wondered what it means? Let me try to explain. Taking this example in configtx.yaml: Policies: Readers: Type: Signature Rule: “OR(‘Org1MSP.admin’, ‘Org1MSP.peer’, ‘Org1MSP.client’)“ Writers: Type: Signature Rule: “OR(‘Org1MSP.admin’, ‘Org1MSP.client’)“ … Continue reading
Hyperledger Fabric Commercial Paper Sample
V1.4 of Fabric introduces the commercial-paper sample which is supposed to be the flagship sample showing Fabric development. I had a chance to study it today and I must say it is so ridiculous that I didn’t know whether to … Continue reading
Posted in Software
Leave a comment
Installing MySQL on brand new Ubuntu VM
https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04 siddjain@engblog:~$ sudo apt update Hit:1 http://azure.archive.ubuntu.com/ubuntu bionic InRelease Get:2 http://azure.archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] Get:4 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [753 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [271 kB] … Continue reading
What blockchain platform should you use to develop a permissioned blockchain?
When I started my blockchain journey I was shocked to find as many as 21 platforms for developing blockchain applications on some article I read on the web. That immediately sent my head spinning. What platform should I choose to … Continue reading
Posted in Software
Leave a comment
Worst Programs Ever
Worst Build Tool: MavenWorst IDE: IntelliJ (will not even consider Eclipse)Worst Document Editor: MS Word
Posted in Software
Leave a comment
Hyperledger Fabric: Running fabric-ca-server with LDAP
Background Fabric-ca-server’s main purpose is to act as a CA (certificate authority) that can be used to obtain X509 public cert and private key – something needed in order to write records to fabric ledger. Why? because every entry is … Continue reading