its about me

Latest

Installing and comparing MySQL/MariaDB, MongoDB, Vertica, Hive and Impala (Part 1)

Reblogged from Chimpler:

Click to visit the original post
  • Click to visit the original post

A common thing a data analyst does in his day to day job is to run aggregations of data by generally summing and averaging columns using different filters. When tables start to grow to hundreds of millions or billions of rows, these operations become extremely expensive and the choice of a database engine is crucial. Indeed, the more queries an analyst can run during the day, the better he can be at understanding the data.

Read more… 2,388 more words

Bereksperimen dengan Silex

Reblogged from Subcoder77:

Pendahuluan

Setelah blusukan dengan Cakep dan Symfony 2 tanpa hasil yang signifikan, kali ini kita coba Silex. Mudah-mudahan lebih barokah.

Glossary

Daftar kata yang perlu dipahami dan bisa dibaca-baca sebelum/selama terjun di sini

Read more… 1,158 more words

Koneksi ke SQLServer dari Lingkungan POSIX (Unix/Linux/OSX)

Reblogged from Subcoder77:

Salah satu cara untuk konek ke MS SQL Server dari lingkungan POSIX adalah melalui kombinasi unixODBC dan FreeTDS. Keduanya sebenarnya berjalan sendiri2.

Untuk MacOS X kita menggunakan Macports (package manager di OSX, semacam RPM/YUM/APT di Linux). Step-by-step instalasinya seperti ini

Read more… 567 more words

Leaflet.js Map in C#

Reblogged from Architecture and Planning:

Click to visit the original post

I have been writing some plugins for ArcGIS Desktop Explorer and thought that for my purposes, Leaflet could do this so much faster and so much lighter.  I could write a webpage to load data from all my sources - Sharepoint, SQL Server, CSV - but I don't know how to make all the connections and all my SharePoint data is acquired through C# already so why not stick with it?

Read more… 210 more words

NoSQL Data Modeling Techniques

Reblogged from Highly Scalable Blog:

Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post

NoSQL databases are often compared by various non-functional criteria, such as scalability, performance, and consistency. This aspect of NoSQL is well-studied both in practice and theory because specific non-functional properties are often the main justification for NoSQL usage and fundamental results on distributed systems like the CAP theorem apply well to NoSQL systems.  At the same time, NoSQL data modeling is not so well studied and lacks the systematic theory found in relational databases.

Read more… 3,950 more words

Creating a new Django project in Eclipse PyDev

Reblogged from Low Coupling:

Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post
  • Click to visit the original post


We are migrating this blog! please visit our new host (http://lowcoupling.com/post/47845431628/creating-a-new-django-project-with-eclipse-py-dev) and leave a feedback!

The Django tutorial (https://docs.djangoproject.com/en/1.4/intro/tutorial01/)  is very well written and so is the PyDev page about it (http://pydev.org/manual_adv_django.html). However I have to say I would have appreciated a tutorial showing how to replicate the Django tutorial in  PyDev. As I could not find it I decided to write one myself.

Read more… 570 more words

Create Alias in Apache2 Ubuntu 10.04

Have You working with a library like jquery, extjs, dojo? Are Your tired to include those library multiple times in multiple project? I’m a lazy person, so that is not my choice. And the answer is use apache alias featured.

How?

  1. Open your apache2 config, mine is /etc/apache2/apache2.conf
  2. Make sure this line is not commented
    # Include all the user configurations:
    Include /etc/apache2/httpd.conf
    
  3. Open /etc/apache2/httpd.conf
  4. Mine is empty, so add this line
    Alias /extjs/ "/var/www/jslib/extjs/"
    
    <Directory "/var/www/jslib/extjs/">
    Options All
       AllowOverride None
       Order allow,deny
       Allow from all
    </Directory>
    
  5. And open http://localhost/extjs/
  6. Now You are a lazy person
Follow

Get every new post delivered to your Inbox.

Join 288 other followers

%d bloggers like this: