Version control of your documents and code should be one of your first and major TO-DOs if you intend to develop application or website and you plan to maintain it during time with possibility to view changes made during it’s life cycle. Continue reading
Category Archives: Development
Ruby on Rails on Ubuntu 12.04 LTS
About Ruby on Rails
Ruby on Rails is an application stack that provides developers with a framework to quickly create a variety of web applications.
Ruby on Rails does take a little while to install on a virtual server, but luckily there are a lot of helpful tools to make this process as easy as possible. Continue reading
Recursively chmod only directories or files
Ever come across the problem of needing to chmod a directory and its many, many, sub-directories, but you don’t want to touch any of the files? Maybe it’s the exact opposite, or you need to recursively change the permissions on only files with a specific extension. Well I had a similar problem with my web server settings. Continue reading
OK codes and hot-keys in ABAP
Sometimes it’s useful to know some hot-key shortcuts or OK-codes when coding in ABAP. So let’s have brief overview of some of them. Continue reading
How to format number with zero-prefix
Let’s presume you want to format number to have ‘0’ prefix. Continue reading
How to sign a Java code
Some commands in Java requires special permissions to run on client PC. This restrictions are applied especially when programming web applets. Continue reading
HEX to ASCII in PERL
Encrypt – decrypt data in PERL
Print ASCII table in Perl
Simple code snippet for printing out ASCII table:
for $chr (0..255) {
print "$chr\t".chr($chr)."\n";
}
Manipulate INI files in C#
If you want to read or write *.ini files within a C# code you can use the following code snippet. Continue reading
