Wednesday, December 05, 2018

"Diff with Vim" for Mac

Being a Unix/Linux user for many years and using VI/VIM almost everywhere. gVim for windows has the nice "diff with vim" context menu for quick files comparison, and has been missed the most from MacVim.



Here is how to create your own "Diff with Vim" context menu.

1. Create a "Quick Action" (aka Service) from Automator

2. From action library select "Utilities" then drag "Run shell script" to your workflow.

3. Adjust the action input: Workflow receives current "Files or folders" in "Finder.app"

4. Select "/bin/bash" as shell

5. type in the following

if [ $# -ge 2 ]; then
    /usr/local/bin/mvim -d "$@"
else
osascript 2>/dev/null <<EOF
    set theDialogText to "Please select at least two (2) files."
    display dialog theDialogText buttons {"I'm silly"}
EOF
fi

Here assumed you installed MacVim using HomeBrew. If you use MacPorts you may have it under "/opt/local/bin/mvim". Make sure you do have the mvim wrapper scripts installed.

6. Pass Input: "as arguments"

Now save your workflow (it will be saved in ~/Library/Services directory)

7. Go to preferences -> Keyboard -> Shortcuts. from "Sevices" category, make sure "Diff with Vim" is selected

8. Go back to your Finder (Desktop, or any folder where has files). select two files or more, text file is preferred even you can compare any type of files technically.

Vola ~ now you see the familiar vimdiff window on Mac. You don't have to run `vimdiff file1 file2 ...` in Terminal anymore :-)




Thursday, November 08, 2018

CentOS/RedHat 7 OpenLDAP Proxy


This post still using SLAPD configuration files which is getting obsoleted. But still works.



# yum install openldap-servers


# vi /etc/openldap/slapd.conf
--------------------------------------------------------------------
# Global Schemas.
include /etc/openldap/schema/core.schema
include /etc/openldap/schema/cosine.schema
include /etc/openldap/schema/inetorgperson.schema
include /etc/openldap/schema/dyngroup.schema
include /etc/openldap/schema/nis.schema

# Global Options.
conn_max_pending 1000
sockbuf_max_incoming 4194303
pidfile  /var/run/openldap/slapd.pid
argsfile /var/run/openldap/slapd.args

sizelimit unlimited
limits * size.pr=0 size.prtotal=none

# Allow everything that can be retrieved to be read
readonly on
access to *
       by * read

# LDAP Proxy Options
modulepath /usr/lib64/openldap

loglevel stats
#loglevel none
#loglevel any


# module for the target ldap-server
moduleload back_ldap.la

# Type of database
database ldap
uri "ldaps://your_ldap_server.test.com"
suffix "your_ldap_search_suffix"

# If your ldap server requires binding, then 
rootdn "bind_user_dn"
rootpw "xxxxxx"

conn-ttl 3600

--------------------------------------------------------------------

Add configuration option to 

# vi /etc/sysconfig/slapd

# Any custom options
SLAPD_OPTIONS="-f /etc/openldap/slapd.conf"

Try starting SLAPD proxy

# systemctl start slapd.service


If your firewall stop running, stop it for test.
Or add rule to allow 389 (or 636 if LDAPS) port to go through

# systemctl stop firewalld
# systemctl disable firewalld









Thursday, February 01, 2018

Ryzen 7 build on Dan case A4-SFX v2

I have been using my new Ryzen 7 PC without case for more than two months now. The Dan case took longer to deliver. I'm very excited that finally I can start tucking everything inside this tiny good looking case.

Part List: 
- Ryzen 7 1700x
- Asrock AB350 ITX/ac
- Corsair DDR4 Vengeance DDR4 3000 16x2
- Corsair SF600 SFX 80Plus Gold
- EVGA GTX 1060 SSC
- Samsung Evo M2 500G
- Noctua NH-L9a-AM4

Pictures to be added.