Best paper list

homepagecarroussel-research11Talking about research, we have to have a clear picture what is the direction in our research. Sometimes it forces you to change your direction to help you navigate your future.

It would be awesome to have the best paper list on a research area that you interested in. I provide some reference that could help you find the best paper in computer science.

  1. Jeff Huang site
    This is very interesting for me because it provides the best papers list for each area in the top conferences. We could see the trends and buzz words based on the site. You may find the page on this link.
  2. Mendeley most cited paper:
    Mendeley is one of the common tools that used by academia. you could find the most cited paper based on Mendeley users on this link.
  3. I also found a question related to the best paper in computer science in Quora. You could find the quora thread on this link.
  4. The last but not the least is a Wikipedia. There’re long list of papers that people thing that it one of the important paper. You may find the page on this link.

That’s all for now. Hopefully, this content will be useful you and myself!

 

 

Dipublikasi di computer, documentation, karir, research | Meninggalkan komentar

TOEFL-Ibt writing​ exercise 1

Question:

Some parents forbid young children from owning smart phones (cell phones with Internet access), while others disagree and believe that they are important tools for keeping in touch. Which point of view do you think is better, and why?

Answer:

I totally agree that young children should not use smartphone on their age. For two aspects. The first I will be more talking from the psychology and healthy aspect. First, young children still could not differentiate the good things and the bad things. On their age, children will accept everything that they see. For instance, two years ago I introduce an N-gage, one of variant of smart phone at that time. I installed numerous number of game applications and messaging. At that time, whenever she touch the smart phone, show would use it until the cell phone power getting low. In addition, she always spend hours to play with that. One thing make everything be worse is that I install some war games on the N-Gage and she played it. Hence, the game affect her psychology like being more rude and hard to be advise by my mom. Second, children will spend more time to play the smart phone rather than play outside home. This is one of the vulnerable of smart phone to them. On children age, it is the most essential steps to be grow, in medical we call it golden age. The golden age is the best period to be grow. In this period, children should be playing, running, stepping and many motoric excercise to do. When children already have smart phone on their age, they will be more passive and unwilling to move even only from their chair or bed. For instance, Jane, my 3 years old youngest sibling. Her father has introduce a tablet android on her 2 years old. Even though actually her father want to teach her some alphabet and number, but Jane surpass it in short time. She knows those a month after the first time her father gave the smart phone to her. But the impact is that she be easy be sick. Because she only play her tablet and dislike taking excercise or play outside with their friends. In conclussion, every parents hope that their children will have excellence brain and easy to contact. However, the impact is more harmful compare to benefit it self. children could not filter every content inside the smart phone. She still could not differenciate, which one is good and not good. In addition, giving smart phone to the children also vulnerable, because it will danger her health and exhibit their golden age. All and all, it would be better to do not give smart phones to young children.

 

Review:

 

Dipublikasi di computer, english, toefl, writing | Meninggalkan komentar

Sometimes life is giving hope and sometimes don’t

aaeaaqaaaaaaaajoaaaajdk4zjc5zmq0lwfjzjutnda2oc1hzmm0lwflowriyji0mjdkmg

It has been a couple months since one of a professor from NUS told me that I may join his research there. I am really appreciated for that and prepare everything that I could prepare far away from my plan go there in January 2017.

Taking this opportunity is dealing with many activities in my life. I have to resign from the place that I teach, suspend some projects and deal with my current job. Everything needs to be prepared and I do my best to do so. I remember a quote “humans can only strive and pray, but Allah who determines”.

I just got an email from a professor from NUS that he could not keep his promise that I might have an opportunity to enter NUS, so do NTU. I do not feel sad at all, but I believe that there’s something that Allah wanna teach me.

“Sometimes Allah does not give something that you want, but always give something that you need. Keep positive and spirit because something beautiful will be happen tomorrow in your life.

 

Dipublikasi di journey | Meninggalkan komentar

Setting passwordless pada Ubuntu 16.04

Passwordless digunakan untuk koneksi ke server tanpa perlu pengetikkan password setiap kali koneksi dilakukan. Langkah-langkah yang perlu dilakukan adalah:

  1. menggenerate rsa.pub

    ssh-keygen -t dsa -P ” -f ~/.ssh/id_dsa

  2.  Kopikan ke ssh public ke server

    ssh-copy-id -i ~/.ssh/id_dsa.pub username@host

  3. kemudian coba koneksikan ke server dengan cara

    ssh user@host

    Jika berhasil, kamu tidak perlu memasukkan password setiap kali melakukan koneksi ke server. Selamat mencoba!

Dipublikasi di computer, ubuntu | Meninggalkan komentar

How to make different background for each worksheet in Ubuntu

One of my favorite feature in ubuntu is having multiple worksheets. As a default, ubuntu will have 4 worksheets. In this post, I would like to make it more stunning by set different background for each worksheet. In this post I use ubuntu 14.04

  1. Change the configuration editor
  2. install compizconfig-settings-manager
  3. Install compiz-plugins
  4. Launch thecompizconfig-settings-manager by searching ccsm
  5. in the Filter bar, just click wallpaper

  6. The last but not the least, click new in the backgrounds and browser the image that you want to set to be backgrounds. and Enjoy the new background!

    This post was referring from aksubuntu and if you have different ubuntu version, you can also refer askubuntu. That’s all!

 

Dipublikasi di computer, documentation, ubuntu | Meninggalkan komentar

Python tips and tricks

  1. Count value in the dict. ref
    sum(dict.values())
  2. Remove all deleted files in one command, ref
    svn status | grep ‘^!’ | sed ‘s/! *//’ | xargs -d ‘\n’ svn delete –force

    
    
Dipublikasi di computer, documentation, Tips trik | Tag | Meninggalkan komentar

Git useful command list

  1. how to go back to the previous commit version, modify and commit in the latest one
    git log
    the command will show you commit version (and to to quit press “Q”).
    ref: stackoverflow
  2. git checkout <version of commit>
    After run this, the  version will be automatically back to the previous version, and then you can update and push it to the latest version
  3. daily usage commandgit push origin <branch name>

    git pull origin <branch name>

    git remote -v

    git remote add

    git add .
    will add all of your files that you had changed

    git commit -m “comments”
    Will commit all of your change, usually we run this after we run “add” command

Dipublikasi di computer, documentation, git, versioning | Meninggalkan komentar

Research Documentation

  1. Undo every change that you don’t want to commit to the server.
    svn revert -R folder
  2. Add folder or files.
    svn add -R foldername
  3. Change permission files in svn(enable executable)
    svn propset svn:executable on <list of files>
  4. Change permission files in svn(disable executable)
    svn propdel svn:executable <list of files>
  5. See some part of file content in the previous version.

    svn cat -r 666 file | less

  6. next

source 2,3 [http://stackoverflow.com/questions/5757293/proper-way-to-add-svnexecutable]

surce 4, [http://stackoverflow.com/questions/4218859/how-do-i-view-an-older-version-of-an-svn-file]

 

 

Latex

  1. How to understand basic usage of table in latex source
Dipublikasi di computer, documentation, research, svn | Meninggalkan komentar

Stunning idioms and vocabularies that I found on my reading list

  • spend yourself in a hole (idiom): spend too much that leads to heavy debt
    – Some people spend themselves in a hole because they can’t control their shopping habits.
  • out of shape (idiom): in poor physical condition
    – I have to start exercising because I’m so out of shape.
  • sky-high (adjective): very expensive
    – Prices for houses in this area are sky-high, so I’m going to look for an apartment for the time being.
  • cut back on (phrasal verb): to reduce
    – I have to cut back on the fatty foods I’ve been eating.
  • rebate (noun): a refund of part of all of the amount paid
    – The company offers a fifty-dollar rebate on the purchase of a new cell phone.
  • nationwide (adverb and adjective): happening around the nation or country
    – The cell phone company is promoting their services nationwide.
    – That company offers nationwide cell phone coverage.
  • roll over (phrasal verb): transfer or carry over
    – This is one of the few companies that allows you to roll over your minutes to the next month without losing them.

 

Dipublikasi di english, idiom, toefl | Meninggalkan komentar

The standart applications for programming and research in ubuntu

Welcome to my post about ubuntu. I have been working with ubuntu for several years. It would be ridiculous thing if the system got an error and could not be repair. That problem happens to me for several times and really spends umpteen times to lookup my documentation and surfs to create a solution for some errors. In this post, I would like to list all of my basic applications that usually I install in the fresh Ubuntu.

  1. Guake, Guake is a user friendly terminal for ubuntu. The installation is very easy, you just need to open terminal and type this command in your terminal.
    sudo apt-get install guake
  2. Sublime text 3, This is a text editor that I really love. I install sublimetext-3 with simply command below. For detail installation you can use this reference.
    sudo add-apt-repository ppa:webupd8team/sublime-text-3
    sudo apt-get update
    sudo apt-get install sublime-text-installer
  3. Install svn
    sudo apt-get install subversion
  4. Install Apache
  5. Install virtualbox
    sudo apt-get install virtualbox
  6. Install Phpmyadmin
  7. Install git
  8. Gnuplot (done)
  9. LatexLive, this is quite big. The installer is about 2 GB. I follow the instruction from this.
  10. No need configuration ssh (yeey)
  11. Okular (done)
    sudo apt-get install okular
  12. Install Laravel, found the best way in here.
    sudo curl -sS https://getcomposer.org/installer | sudo php
  13. Install skype, here
Dipublikasi di computer | Meninggalkan komentar