Berikut saya berikan daftar mengenai tema skripsi bagi mahasiswa yang akan mengambil skripsi, khususnya bagi yang berminat di dunia JavaScript. Semua yang saya uraikan disini meliputi JavaScript di sisi server maupun di sisi client. Istilah JavaScript ninja sebenarnya merupakan istilah informal yang merujuk pada seorang developer dengan kemampuan pemrograman JavaScript yang sangat bagus. Istilah...
Oktober 02, 2012
Git dan Github: Petunjuk Awal
Posted by Unknown on Selasa, Oktober 02, 2012
Mengambil dari repo
git clone [lokasi]
Contoh:
git clone https://github.com/bpdp/buku-cloud-nodejs.git (jika menggunakan https)
git clone git://github.com/bpdp/buku-cloud-nodejs.git (jika menggunakan git)
Membuat repo baru di lokal
Buat direktori baru
Masuk ke direktori baru tersebut
Menambahkan semua file:
git add -A
Commit:
git commit -m "First commit - initializing empty repo"
Melihat...
Agustus 24, 2012
Quick and Dirty Hack: Memeriksa dan Membandingkan Versi NodeJS
Posted by Unknown on Jumat, Agustus 24, 2012
Salah satu "masalah" dari NodeJS adalah siklus rilis yang saya pikir "terlalu cepat". Seringkali bolak-balik ke website NodeJS untuk melihat apakah sudah ada rilis stabil terbaru atau belum. Sebenarnya tidak harus seperti itu, hanya saja, saya termasuk manusia aneh yang menyukai berada di posisi bleeding edge, jadi setiap ada rilis stabil terbaru, rasanya hidup tidak lengkap jika tidak menggunakan...
Posted in node.io, NodeJS, The Software Ontology
Agustus 23, 2012
Arch Linux Package for ArangoDB
Posted by Unknown on Kamis, Agustus 23, 2012

Finally I can finish ArangoDB package PKGBUILD for Arch Linux. The people at triAGENS are helpful. Have to say thank you for their help, especially @steemann, @loremsqlsum, and @fceller. The package can be installed just by using yaourt -S arangodb.
The package PKGBUILD can be downloaded from https://aur.archlinux.org/packages.php?ID=62227
Enjo...
Posted in ArangoDB, Arch Linux
Agustus 21, 2012
Change Python Interpreter Temporary (python3 -> python2)
Posted by Unknown on Selasa, Agustus 21, 2012
I came across this difficulty when I try to install ArangoDB. It comes with V8 Javascript engine from Google bundled in. Installing V8 requires Python 2, not Python 3 which is the default in my Arch Linux box.
[bpdp@bpdp-arch V8]$ ls `which python`
lrwxrwxrwx 1 root root 7 Apr 24 06:48 /usr/bin/python -> python3
[bpdp@bpdp-arch V8]$
Luckily, V8 uses "#/usr/bin/env python", not "#/usr/bin/python"....
Posted in ArangoDB, Arch Linux, Python, V8
Agustus 16, 2012
NodeJS Installation Without OS Package Management
Posted by Unknown on Kamis, Agustus 16, 2012
I use Arch Linux for all my OS activities. Arch Linux has NodeJS package and can be easily installed using pacman -S nodejs but you may see that NodeJS has fast release cycle that my Arch Linux package is sometimes left behind and also sometimes I want to use a specific version (for example, Ace - and editor part of Cloud9 IDE - can not work with NodeJS 0.8.x, it needs 0.6.x). Under this scheme, it...
Posted in Arch Linux, NodeJS, pacman
Agustus 14, 2012
Working with GitHub and Clojars
Posted by Unknown on Selasa, Agustus 14, 2012

This guide is used as a note for myself. If you can benefit from this note, that's fine. Here I just wish to document how I work with GitHub and Clojars. I need to do this since I have my own need for Ring middleware to reload automatically a server without restart whenever a namespace in Ring is modified. The original version was not maintained I think, since it uses Clojure...
Posted in Clojars, Clojure, GitHub, Leiningen, ring-clojure, ring-reload-modified
Agustus 12, 2012
Mengakses Basis Data Graph OrientDB Menggunakan Clojure
Posted by Unknown on Minggu, Agustus 12, 2012
OrientDB adalah salah satu basis data NOSQL dengan kemampuan basis data obyek, graph, document, serta flat. API untuk basis data ini bermacam-macam dan karena dikembangkan menggunakan Java, maka API yang paling utama adalah Java, meski demikian, tersedia juga API untuk JavaScript dan implementasi bahasa-bahasa pemrograman berbasis JVM seperti Clojure dan Scala.
Pada tulisan ini saya akan sedikit...
Juli 28, 2012
Fancy Header with KOMA-Script
Posted by Unknown on Sabtu, Juli 28, 2012

Using KOMA-script for my dissertation, does make me a bit confuse. Reading its manual is a bit daunting since I am a new user of KOMA-Script although I am a self-proclaimed average LaTeX user. Here I will give a guide to create fancy header. I will not explain a lot, just directly put my LaTeX source so that you can get them directly to create a fancy header. Here's the source:
\documentclass{scrreprt}
\usepackage{url}
\usepackage{listings}
\usepackage[usenames,dvipsnames]{color}
\usepackage[T1]{fontenc}
\usepackage{wrapfig}
\usepackage[pdftex]{graphicx}
\usepackage{setspace}
\usepackage[Sonny]{fncychap}
%\usepackage[Bjornstrup]{fncychap}
\usepackage[automark]{scrpage2}
\begin{document}
...
Posted in Dissertation, Footer, Header, KOMA-Script, TexLive
Juli 27, 2012
Install User Level Tex Live Package - fncychap
Posted by Unknown on Jumat, Juli 27, 2012

Tex Live provide a big comprehensive TeX system which is very useful for document production. Although Tex Live provide complete but still there are lots of packages which are available at CTAN and can be installed to suit our need. Here I will explain a bit about how to install a package, specifically at user level, not global level. The package which will be installed is...
Posted in Dissertation, TexLive
Juli 14, 2012
Web Semiotics: Web As a Sign System
Posted by Unknown on Sabtu, Juli 14, 2012

Introduction
A "web application", also known as "website" or just "web", is a kind of application which uses client-server architecture built on top of TCP/IP network infrastructure. This has become an important part of every organization in the world. Lots of people around the world use organization's website as the way to find any information about organization, products,...
Juli 13, 2012
Utilizing Leiningen Profile
Posted by Unknown on Jumat, Juli 13, 2012
In my previous post about setting up Emacs for Clojure development, I suggest to include lein-swank inside the plugins' project.clj. Eventhough this approach work, here I will explain how to use Leiningen profile to separate the plugins / libraries which will act as helper and with other plugins / libraries which will be included in the project result. You will find that separation of concerns is...
Juli 12, 2012
Using Emacs for Clojure Development
Posted by Unknown on Kamis, Juli 12, 2012

There are many (confusing) blog posts about using Emacs for Clojure development but I promise you not to make you confuse a bit more (hopefully. :-D). Since I use Clojure for my dissertation and usually Clojurians use Emacs (for obvious reasons), then here I come.
There are some steps to do to prepare Emacs. I use Linux (Arch Linux) here, so, probably it won't be applicable...
Juni 20, 2012
Arsitektur Aplikasi Web Semantik: Antara Ada dan Tidak Ada
Posted by Unknown on Rabu, Juni 20, 2012

Artikel sederhana ini sebenarnya berawal dari berbagai pertanyaan (awam) yang sering saya temui terkait dengan Web Semantik (in English: Semantic Web). Pertanyaan yang paling sering saya temui biasanya dari 'dunia nyata' alias dari para praktisi pengembang aplikasi web. Meski banyak perdebatan dengan orang-orang yang skeptis dengan Web Semantik, saya pikir, mengubah web menjadi...
Februari 14, 2012
Using OrientDB - Tinkerpop Blueprints from NetBeans
Posted by Unknown on Selasa, Februari 14, 2012

Using OrientDB from NetBeans is pretty easy. Here I will give you some of the steps needed for the uninitiated. NetBeans version is not so important, although in this posting I use NetBeans 7.1. To follow this article, you need OrientDB (as this is about Tinkerpop Blueprints, of course you need orientdb-graphed package - mine is 1.0RC8), JDK (mine is JDK7_u2), and NetBeans...
Introduction to Graph Database and OrientDB
Posted by Unknown on Selasa, Februari 14, 2012

Graph database is a kind of NOSQL database which simply a term to show about the database management system software which is not a part of relational database. Since the scalability issues have arise and become a very big concerns for any company, this kind of database is getting more and more attention. People usually call this kind of needs on data scalability as web scale....
Februari 13, 2012
Apache OFBiz - ASF Solution for Enterprise Automation
Posted by Unknown on Senin, Februari 13, 2012

As my daily jobs require me to pay attention only to the development tools, I don't pay attention to this software in the first place. What I mean by this is, I realized that there is an ERP solution from Apache Software Foundation before but after I promise my students to give them a free and open source software in my "Business Information Systems" class, then I started...
Posted in Apache OFBiz, Enterprise
Januari 22, 2012
Arrows Problem in NERDTree Vim Plugin
Posted by Unknown on Minggu, Januari 22, 2012

The NERDTree plugin in Vim is used to present and display directories and files in your filesystem location. I found this plugin very useful to manage my code. The small problem at the first time I used this plugin is the display of explored filesystem. Default in my terminal like this:
Not beautiful of course. So, I tried to find the solution. The problem lies in how...
Januari 16, 2012
Menggunakan awesome Window Manager untuk Keperluan Sehari-hari
Posted by Unknown on Senin, Januari 16, 2012

Tulisan ini hanya sedikit sekali membahas tentang awesome Window Manager (http://awesome.naquadah.org/). Kalau mau mengetahui apa itu awesome, mengapa dibuat awesome, dan lain-lain yang lebih lengkap, ya ke 'rumah'nya saja. Tulisan ini barangkali tidak akan menarik bagi orang-orang yg tdk menyukai old school. Jika tidak mengetahui arti dari old school, ya berarti memang...
Posted in awesome, linux, window manager
Langganan:
Postingan (Atom)
Tema skripsi untuk JavaScript Ninja wannabe