[28-03-2019]

List all shared libraries loaded by the process

or


[25-03-2019]

Unicode frames in macOS

If you want to type in Unicode character on macOS, it’s very simple. Just add new layout System Preferences -> Keyboard -> Input Sources. Now, you can type the hex number of Unicode character while keeping option (⌥) key pressed. For example, to get ╒═╕ type: ⌥+2552, ⌥+2550, ⌥+2555.


[14-03-2019]

It was fun, but no, thanks …


[27-02-2019]

And Now for Something Completely Different – e-Deklaracje 2019 macOS

Jeżeli walczysz z e-Deklaracjami na macOS, jest duża szansa że widziałeś komunikat jak poniżej: “Failed to load an application resource (internal error).” Na szczęście, jest rozwiązanie tej patowej sytuacji. Winę za całość ponosi integracja e-Deklaracji i Adobe Acrobat Reader DC. Nie wiem jak u innych, ale u mnie e-Deklaracje nie współpracują z najnowszą wersją Adobe […]


[20-02-2019]

Scanning remote machines in macOS

If you have issues while testing your remote services, it’s very convenient to use Network Utility in macOS. You can start it either using Spotlight Search (⌘-space) or you can call it directly from CLI > /System/Library\ /CoreServices/Applications/\ Network\ Utility.app/Contents/\ MacOS/Network\ Utility All you have to do is to scan your target machine using Prot […]


[20-02-2019]

Quotes like this make my day ;)

So the svd and the principle components, and principle components analysis is essentially the same thing. And so if you hear, you know, you’re in a cocktail party and you hear two people talking about the svd and pca you can rest assured that they’re basically doing the same thing. source: Exploratory Data Analysis One […]


[19-02-2019]

And Now for Something Completely Different – Reputacje


[17-02-2019]

How do I work with development build on macOS – NetBeans 11.0

Whenever you download NetBeans 11.0 (development version) from the official page here: Download, you end up with a zip file that contains working copy of NetBeans. It looks like this netbeans |– CREDITS.html |– DEPENDENCIES |– DISCLAIMER |– LICENSE |– NOTICE |– README.html |– apisupport |– bin |– enterprise |– ergonomics |– etc |– extide […]


[14-02-2019]

macOS and VMware Tools for Ubuntu
– sharing files between host and guest system

You can share your macOS directories between your host system and guest system while running VMFusion. In my case, the easiest way to do it was as follows. Download VMware Tools You can download it here: VMware tools Unpack the archive After unpacking the archive you will find structure like this VMware-Tools-core-10 |– floppies | […]


[14-02-2019]

OpenVPN on macOS 10.14

If you want to install most recent version of OpenVPN on macOS you will need: tuntap   git clone git://tuntaposx.git.sourceforge.net/gitroot/tuntaposx/tuntaposx LZO http://www.oberhumer.com/opensource/lzo/download/ OpenSSL git clone https://github.com/openssl/openssl.git OpenVPN     OpenVPN download XCode XCode in AppStore Double check you can download all the stuff. Once it’s in place, you can proceed with installation. # Make sure to install command […]


[11-02-2019]

NetCAT 11.0

So, NetCAT 11.0 has started Register If you want to register, take a look here: NetCAT 11.0 Participants Get the stuff If you are looking for development version of NetBeans (current version is 11.0-vc4) – take a look here: 11.0-vc1, 11.0-vc2, 11.0-vc3, 11.0-vc4. You will need JVM to run things If you are looking for […]


[01-01-2019]

macOS with multiple displays-
prevent mouse from jumping to other screen

Working with multiple displays can make you suffer while moving mouse close to the edge. Suddenly you end up at the other display. Solution is so freaking simple ;)


[10-12-2018]

cat and next line continuation ‘\’

This one, gave me one, huge, headache. > cat script.sh #!/bin/bash cat file \ | sed "s|aa|bb|g" > touch file > ./script.sh cat: : No such file or directory ./script.sh: line 3: syntax error near unexpected token `|’ ./script.sh: line 3: ` | sed "s|aa|bb|g"’ Yes, you are right, there is an extra space at […]


[10-12-2018]

macOS + VIM + Modifer Keys… – make life easier


[30-11-2018]

yank the line

Whenever you need that line – without leading spaces, and without new line character: ^y$.


[29-11-2018]

retreat

> svn merge -r HEAD:some_revision_back_in_time .


[26-11-2018]

indent

> indent -npsl -bli0 -brs -br -brf -bs -cdw -ce -cs -i2


[23-11-2018]

xz

# This one works for macOS > tar zxf archive.xz


[23-11-2018]

macOS – disable notifications

I am not sure who’s idea was it to force people to use notifications. The first thing I always do (after installing macOS) is going to System Preferences -> Notifications -> Turn on Do Not Disturb. There is no other way, unless you want to be disturbed every, freaking, minute :)


[20-11-2018]

/dev/ufs/ no such file or directory

I was struggling for quite some time with my USB backup drive attached to NAS server based on FreeBSD. From time to time, during boot time, I was getting error /dev/ufs/usbstorage no such file or directory and machine was going into single user mode. It turned out, that adding late inside /etc/fstab was enough to […]