-
Archives
- April 2022
- January 2022
- December 2021
- November 2021
- February 2021
- January 2021
- December 2020
- September 2020
- August 2020
- July 2020
- June 2020
- January 2020
- December 2019
- September 2019
- July 2019
- March 2019
- February 2019
- January 2019
- December 2018
- November 2018
- August 2018
- June 2018
- February 2018
- January 2018
- October 2017
- September 2017
- August 2017
- April 2017
- March 2017
- January 2017
- November 2016
- October 2016
- September 2016
- May 2016
- February 2016
- January 2016
- December 2015
- August 2015
- July 2015
- April 2015
- February 2015
- December 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- March 2014
- October 2013
- June 2013
- May 2013
- April 2013
- July 2012
- June 2012
- April 2012
- January 2012
- December 2011
- November 2011
- October 2011
- June 2011
- May 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- August 2010
- June 2010
- May 2010
- April 2010
- January 2010
- October 2009
- September 2009
- July 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
-
Meta
Category Archives: workday
Go: False positive virus detection
Recently to my surprise antivirus software detected virus in my freshly build golang program. Doing research I found interesting article from Melle Boudewijns. So I created simple golang program hello_flags.go: Then I compiled this source file with flags and execute … Continue reading
Posted in golang, workday
Leave a comment
Text file to json array with jq
Lets say we need convert a text file into json array a process it. More information about jq itself can be found in the manual. First of all let’s create a test file with the first four Greek alphabet letters: … Continue reading
Posted in workday
Leave a comment
Wordle helper
Wordle is nice single webpage game at https://www.powerlanguage.co.uk/wordle/ There is a page with list of the many 5 letter words at https://7esl.com/5-letter-words/ Here is how to create a plain text file with 660 5 letter words: Then one can grep … Continue reading
SVG: color-keywords with colors
At the World Wide Web Consortium (W3C) document SVG Color 1.2, Part 2: Language there are defined color-keywords. Here is that part of the definition updated with horizontal rectangle with color for all 147 color-keywords. color-keyword ::= ~”aliceblue” | ~”antiquewhite” … Continue reading
SVG: Circular arc
The arc command (a or A) of the element <path> is used to define an elliptical path. The special case is the circular path. Contrary to the element <circle>, where the center of the circle and radius has to be … Continue reading
Sellers.json
Would you like to find who is advertising with Google AdSense? There is a Google file sellers.json . Most objects have a property “is_confidential”: 1, but other objects could have a domain name and other information. Be aware, the file … Continue reading
Posted in workday
Leave a comment
Carbon: How much is 1 ppm of CO2 in Earth atmosphere
On Earth day 2021 will be officially announced XPRIZE Carbon Removal sponsored by Elon Musk. Now there is a carbon dioxide content in the atmosphere 412 ppm. It would be good to know how much is actually 1 ppm of … Continue reading
Carbon: What is a size of the 1 ton of CO2
On Earth day 2021 will be officially announced XPRIZE Carbon Removal sponsored by Elon Musk. We know now, that a scale model at a level of carbon removal of 1 ton of CO2 per day has to be demonstrated. So, … Continue reading
NET-100-64-0-0-1
Did you find your WAN IPv4 address in the range 100.64.0.1 to 100.127.255.254? Then most likely your Internet Service Provider (ISP) is utilizing shared address space. Most likely that address would be behind Carrier-Grade NAT (CGN). See more RFC 6598.
Go webserver on Apache
Go language allows create very easily webserver. Let’s consider a full working example of a simple web server at https://golang.org/doc/articles/wiki/ implemented in the file web8080.go: Code above could be one of the several web application implemented in go language. Each … Continue reading