Related Posts
How many lines of code are there inside Bitcoin-Core client?
According to cloc this is the line count breakdown, 87% of the project is all C/C++ header files and code. http://cloc.sourceforge.net v 1.60 T=7.23 s (72.2 files/s, 43792.9 lines/s) ——————————————————————————- Language files blank comment code ——————————————————————————- C++ 244 9985 6246 211500 C/C++ Header 188 5346 4617 35399 Bourne Shell 26 2576 2571 20090 make 12 […]
Create Base32 SHA1 hashes out of files in PHP 5
LimeWire and other Gnutella clients uniquely identify files by creating a SHA1 hash of the files. I thought that it might be useful to the gnutella network to have regular webservers sharing legal files. Usually regular Joe webmasters don’t have permissions to run java programs or have tcp ports open due to their webhosting contracts, […]
How to run your Kotlin gradle built app from the command line
So you build your Kotlin app, you went through the trouble of creating a build.gradle script that you build with gradle assemble this outputs a a “build/libs/kotlin.jar” .jar file, but you have no clue how to run your Kotlin code from the command line. Doing it by hand with “java -cp ” is too much […]