Rizal
No man was ever wise by chance.

Rizal (14)

RavenDB at a Glance Part 2

RavenDB is built to be a first-class citizen on the .NET platform offering developers the ability to easily extend and embed the database in their applications. A few of the key features that make RavenDB compelling to .NET developers are as follows: RavenDB architecture. RavenDB leverages…

MySQL Replication Type

Taken from: http://rizal.orami.com/2016/10/mysql-replication-type/ By default, master and slave servers assume that they are in the same time zone. If you are replicating between servers in different time zones, the time zone must be set on both master and slave. Otherwise, statements depending on the local time…

VIM Cheatsheet

Taken from: http://rizal.orami.com/2016/11/vim-cheatseet/ Note: If you’re decent at vim and want your mind blown, check out Advanced Vim I’ve compiled a list of essential vim commands that I use every day. I then give a few instructions on how to making vim as great as it…

Compressing many files with Tar

Original content: http://rizal.orami.com/2016/12/compressing-file-with-tar/ Ever tried to compress many (hundreds of thousand) files with tar? With this command: $ tar -cf file_names.tar *.jpg I bet you will found error message like this: $ -bash: /bin/tar: Argument list too long All shell have / has a limit…