I couldn't imagine that I would use this link so often. It's a magnificent Amazon's tutorial that shows how to deploy static website to Amazon S3 in case of custom domain name. I'll cache it here ツ
Articles by Dmitriy Sukharev
SSH tunneling in Linux
Once you have SSH access to the server, you can use tunneling to connect to its services that are unavailable to others.
Use the following command to make example.com:1521 be available as your localhost:1522.
ssh -N -p 22 usename@example.com -L 1521:localhost:1522
Tagged as : LinuxUsage of Oracle Database via JDBC
In this article I want to show you how to use Oracle Database via JDBC. I'm going to describe the easy way of connection to database, creation of table, and fetching, inserting, updating and deleting rows in created table (CRUD).
What do you need for this?
First of all ...
Using JNI for calculations
I had plenty free time lately. Out of boredom, I decided to try something new and interesting, something what I wouldn't probably use for my job. Something like JNI.
JNI enables programmers to run native code from Java and vice versa. It can be used to improve performance of ...
New Wildfly 8 installation in couple minutes
In the previous article I wrote how to install JBoss AS 7 as service in Linux. In this one I'll enable you to install the new 8th version.
It got a new name. JBoss AS was renamed to Wildfly. The final version released recently, so it's a right ...
Windows 7. Opening up ports for servers
Very handful answer at superuser.com:
Apache Server on Windows 7 opening up ports?Tagged as : Windows