Author: johayek
-
Git, Windows, and how to deal with file mode problems
https://stackoverflow.com/questions/12193020/file-mode-with-msysgit https://git-scm.com/docs/git-config $ git config core.filemode false
-
rnc-mode: Emacs mode to edit Relax-NG Compact files
https://elpa.gnu.org/packages/rnc-mode.html https://elpa.gnu.org – GNU Emacs Lisp Package Archive
-
Yocto Project – enabling the creation of Linux distributions for embedded software
https://en.wikipedia.org/wiki/Yocto_Project
-
RELAX NG’s jing and trang now on github.com
https://github.com/relaxng https://github.com/relaxng/jing-trang
-
the Debian Linux distribution and packaging management-related software: dpkg, APT, …
https://en.wikipedia.org/wiki/Category:Linux_package_management-related_software https://en.wikipedia.org/wiki/dpkg – “the software at the base of the package management system in the free operating system Debian and its numerous derivatives” https://en.wikipedia.org/wiki/APT_(Debian) – “APT was originally designed as a front-end for dpkg …, but …”
-
XmlStarlet User’s Guide and IBM link regarding PYX
http://xmlstar.sourceforge.net/doc/UG/xmlstarlet-ug.html http://www-106.ibm.com/developerworks/xml/library/x-matters17.html – does no longer work as of 2017-10-02 (probably quite a little earlier already) http://www.ibm.com/developerworks/xml/library/x-matters17.html – does no longer work as of 2021-08-31 (probably quite a little earlier already) https://www.ibm.com/developerworks/xml/library/x-matters17/x-matters17-pdf.pdf – this is the actual and relevant document (broken link as of 2021-08-31) https://duckduckgo.com/?q=xml+pyx
-
EmacsWiki: NTEmacs With Cygwin
https://www.emacswiki.org/emacs/NTEmacsWithCygwin This is great!!! Now I can do “Search Files…” in Emacs’s dired-mode again — just like “everywhere”. How to get it to start in the user’s home directory? Create a shortcut for runemacs.exe, move it to AppData\Roaming\Microsoft\Windows\Start Menu\Programs\ ! Modify the properties of that shorcut accordingly!
-
my self-hosted Git server on my NAS
https://stackoverflow.com/questions/10391522/git-does-not-appear-to-be-a-git-repository – the crucial question resp. advice there: On your server, go to the directory that is the repository and type pwd. The output is the full path of the repository, make sure you use that. I am using ssh://HOST/… Git URLs for that purpose.
-
Git, Windows, and how to deal with CR-LF
https://git-scm.com/book/tr/v2/Customizing-Git-Git-Configuration#__code_core_autocrlf_code I am working in a UNIX-ish environment under Windows, so I don’t want Git to convert my Linux-LFs to CR-LF and vice versa. This is my Git setting: $ git config –global core.autocrlf false
-
git on cygwin (or wherever): if you run into the “ssh-askpass” problem, make sure you get the SSH agent running!
deploy your SSH public key to your git server! If the SSH agent allows you logging in to “various platforms”, it will also allow you logging in to your git server. And you are fine.