- https://metacpan.org/release/XML-XSH2
- https://metacpan.org/source/CHOROBA/XML-XSH2-2.1.25/README – you can find the latest version through the previous link
Blog
-
XML-XSH2 – an XML Editing Shell implemented in Perl
-
William Nagel: “Subversion Version Control: Using the Subversion Version Control System in Development Projects”
Prentice Hall does not sell the book any longer, but they provide the e-book (PDF) for free download.
-
the software versioning and revision control system “Apache Subversion”
- https://en.wikipedia.org/wiki/Apache_Subversion
- https://en.wikipedia.org/wiki/Comparison_of_Subversion_clients
…
- http://gcc.gnu.org/wiki/SvnTricks
- https://www.mediawiki.org/wiki/Subversion
- http://stackoverflow.com/questions/9104662/get-all-branch-names-in-svn
- http://www.yolinux.com/TUTORIALS/Subversion.html
kdesvn:
- https://en.wikipedia.org/wiki/KDESvn
- http://kdesvn.alwins-world.de/
- http://kdesvn.alwins-world.de/extras/book/
- http://projects.kde.org/kdesvn
- https://quickgit.kde.org/?p=kdesvn.git
https://github.com/tumf/svn-utils: // a couple of command line utilities (Ruby+shell) – worth reading the sources
- svnbr – a Subversion utility in Ruby to operate branches (multi-purpose)
- svn-addignore – in Ruby (rather short)
- svn-addremove – a Shell script (rather short)
https://github.com/monjudoh/svn-utils – just an apparently non-relevant fork from https://github.com/tumf/svn-utils (listed above).
-
Safari Books Online – I finally subscribed to the ongoing membership – for EUR 172 per annum
Unlimited access to hundreds of thousands of hours of business, tech, and design training, and the tools to help you find just the parts you need today.
Last year I had to let the promotion code go unused, because Safari did not allow using PayPal. But this year they did.
I wonder, what kind of restrictions I will have to face:
- limited number of books being read “concurrently”
- how long is the minimal time a book being read counts as “being read” and occupies a slot
- what about video courses etc.
-
how to dive into PostgreSQL – using a MacBook Air and the O’Reilly book
- http://Jochen.Hayek.name/wp/blog-en/2016/08/07/postgresql/ – my PostgreSQL notes …
- http://shop.oreilly.com/product/0636920032144.do
- https://www.safaribooksonline.com/library/view/postgresql-up-and/9781449373184/
I installed the Postgres.app and pgadmin, as described in my article quoted above.
I installed the tutorial code from the O’Reilly book.
I won’t do the exercises during my weekends (I hope), but rather during the Berlin-Munich journeys on the ICE.
Still … all these preparations cost me quite a couple of hours on this Sunday.
-
PostgreSQL
- https://en.wikipedia.org/wiki/PostgreSQL
- https://en.wikibooks.org/wiki/PostgreSQL
- http://shop.oreilly.com/product/0636920032144.do
- https://www.postgresql.org
- https://wiki.postgresql.org/wiki/Community_Guide_to_PostgreSQL_GUI_Tools
- https://www.pgadmin.org – pgAdmin III is THE Open Source management tool for your PostgreSQL databases – works even out-of-the-box for my “named pipe” / non-TCP/IP set-up
Software I installed for my Mac from https://www.postgresql.org/download/macosx/ :
- Postgres.app – a “nice” server to be started (and also stopped) from the “Applications” folder
- the “Interactive installer by EnterpriseDB” – actually I only want to use its pgadmin, and I keep stopping its server – maybe I will find out how to prevent that server from getting started at all – I can start that pgadmin from “the Dock”
-
how to connect to a PostgreSQL database using JDBC w/o host
- https://en.wikipedia.org/wiki/Java_Database_Connectivity
- http://jan-lolling.de
- https://github.com/jlolling/sqlrunner
- https://github.com/JochenHayek/sqlrunner – my fork
I am giving Jan Lolling’s SQLRunner a try to connect to a local PostgreSQL database. SQLRunner is written in Java, and it uses JDBC to connect to the various databases.
Apparently there are 2 ways to connect to a PostgreSQL database:
- hostname + port + database + …
- socket + database + …
The 2nd way is not just a variant of the 1st (I got told).
It appears to me, that JDBC for PostgreSQL only supports the first way. Is there a way to get this assumption confirmed?
- http://stackoverflow.com/questions/25918416/jdbc-mysql-connection-using-unix-socket :
“Java itself doesn’t support unix domain sockets, but since you’re on windows, you can use named pipes, [..]” (I am not sure, this is true) - http://dev.mysql.com/doc/connector-j/5.1/en/connector-j-reference-configuration-properties.html : NamedPipeSocketFactory …