-
macros!!!
-
cascading includes of macro bndruns
-
usage of local repos/file uri (especially fileuri macro)
-
launch configs
-
bnd workspace templates
Assure git server connection is working with a specific keyfile
ssh -o "IdentitiesOnly=yes" -i ~/.ssh/id_ed25519_pekirsc_AT_git_i_mercedes-benz_com <git-ssh-server, e.g. [email protected]
Activate Trace when cloning
Technical details for https://stackoverflow.com/a/44169445/6730571
On a base system, /usr/bin/java
is a symlink that points to /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java
, which is an Apple wrapper tool that locates and executes the actual java
.
(Do not touch anything in those 2 system directories. It should actually be impossible due to "System Integrity Protection" anyway.)
If you don't have Java installed, attempting to execute java
will open a dialog that invites you to install it.
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
vlc http:// --sout="#std{access=file,mux=mkv,dst='/tmp/file.mkv'}" vlc://quit
mplayer -dumpstream http://STREAM.mp4 -dumpfile /tmp/file.mp4
Install and Configure Beyond Compare
- Menu -> BeyondCompare -> Install Command Line Tools ...
- Open a diff session e.g. Folder Compare, the Menu -> Session > Session Settings... > Handling > Follow Symbolic Links. Instead of "Use for this view only" at the bottom, select "Also update session defaults".
- execute following cmds inside shell
package io.klib.certificates; | |
import java.io.ByteArrayInputStream; | |
import java.io.DataInputStream; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.security.KeyStore; |