Let's make a note... -StartingFromNothing-

Wednesday, June 12, 2013

Sunday, June 9, 2013

How to get your Sublime Text 3 registered

While Sublime Text 2 has been being an awesome editor which you can add and set the whole thing inside as needed, there was already coming out the new version, Sublime Text 3 (Beta), which is available to download. Using ST3 requires additional payment for whom already purchased the older version. I will share how to crack it, but if you think this software help u much on your work, just purchase it! :)

  1. Download the new version of ST3 here.
  2. By using your favourite Hex Editor (i always using vim command line) you need to open "sublime_text.exe" in windows or "sublime_text" in linux.
  3. Type :%!xxd and hit enter.
  4. Search value by typing :%s/4333 3342 3032/4333 3242 3032/g and hit enter.
  5. Then type :%!xxd-r to return.
  6. The last, just type :wq! and hit enter.
  7. Open ST3 and copy paste this license.
—–BEGIN LICENSE—–
Patrick Carey
Unlimited User License
EA7E-18848
4982D83B6313800EBD801600D7E3CC13
F2CD59825E2B4C4A18490C5815DF68D6
A5EFCC8698CFE589E105EA829C5273C0
C5744F0857FAD2169C88620898C3845A
1F4521CFC160EEC7A9B382DE605C2E6D
DE84CD0160666D30AA8A0C5492D90BB2
75DEFB9FD0275389F74A59BB0CA2B4EF
EA91E646C7F2A688276BCF18E971E372
—–END LICENSE—–

How to writing code in blogspot

Here is a sample CSS of code snippet to write code inside post in blogspot. You can modify this code as needed. Just add this code to Edit Template > Add CSS > Write down in the text area.


.code { background-color: #eeeeee;
    border: 1px dashed rgb(153, 153, 153);
    font-family: 'Andale Mono', 'Lucida Console', Monaco, fixed, monospace;
    font-size: 12px;
    line-height: 14px;
    margin: 10px 0 10px 10px;
    overflow: auto;
    padding: 10px 10px 10px;
    width: 600px;
    color: black;
}

Then write your code inside div tag like shown below. Don't forget by writing this in HTML mode (simplify by pressing HTML button).

<div class='code'>
Your code should be pasted here in this div tag.
</div>

Friday, June 7, 2013

Write and run java program using Sublime Text 2

Sublime Text 2 is one of my Favorite text editor for coding after Geany. This is an awesome and light weight editor. What I loved to share is how to setting ST2 then you can use it to compile and run java programs directly.

Follow these steps below to prove it :)

  1. Firstly, make sure that you already have jdk installed. Or you can download here.
  2. After installing then set the PATH variable on Environment Variables (Right click on My Computer > Properties > Advanced system settings > Environment Variables).
  3. Then go to System variables > Path > add jdk bin directory path. For example: C:\Program Files\Java\jdk1.7.0_17\bin.
  4. Create a bash shell script file runJava.bat :
  5. Next step is setting this bash shell script in the build system of ST2. Open ST2 > Preferences > Browse Packages > go to Java Folder > Open JavaC.sublime-build and replace this line "cmd": ["javac", "$file"], with this "cmd": ["runJava.bat", "$file"], then save.
  6. Done. Then open your java program using ST2 or write a simple program and click Tools > Build or simplify you can press Ctrl+B.

Thursday, June 6, 2013

Hapus username aneh di folder/file properties

Ada yang pernah ngalamin di properties folder atau file tiba-tiba muncul user name S-1-5-21-1935655697-448539723-682003330-1003 gak? Sesuai pengalaman edit permission folder atau file, pertama langsung ane delete tuh username alay. Bisa hilang sih, tapi efeknya folder atau file gak bisa di akses dan gak bisa dihapus. Apa-apaan ini !@*&$#!?

Ini gan penampakannya :

annoying

Mungkin username bisa bervariasi ( S-1-5-xxx... atau lainnya), kebetulan di laptop ane seperti itu. Setelah coba2 akhirnya berhasil juga, caranya gini gan :

  1. Klik kanan folder/file pilih properties.

  2. Buka tab security lalu klik advanced.

  3. Buka tab Effective Permissions lalu klik select, ketik "users" tanpa tanda kutip dan klik Check Names, OK.

  4. Buka tab Owner ganti dengan Administrators, centang Replace owner on subcontainers and objects, OK.

  5. Buka tab Permissions lalu centang Replace permissions, Apply dan klik Yes.

  6. Tunggu sebentar sampai proses selesai lalu klik OK.

  7. Klik OK dan ulangi dari langkah 1 jika masih ada folder atau file yang terjangkit.


Note: Kalau banyak file atau folder yang disusupi username alay tadi, lebih baik langsung edit permissions-nya dari parent folder atau folder utama biar lebih cepat.

Semoga membantu.

Sunday, April 21, 2013

The best linux distro ever..

Hi guys, i just wanna share my thought about the best linux distro I've ever used. So many distro that have been nested in my laptop and finally I found the voyager distro based on ubuntu. It was more more and more faster than ubuntu, i mean for my oldiest laptop with 1.66GHz CPU only. Just like a charm! Hahaa.. Then, do search in youtube for preview before install it. And here we go!

Voyager

Ohh almost forget, my second choice is Crunchbang. It's also superb! Tell me if you have your own favorite...!?

Coffee...where is my coffee...?!?!?! ....... [02.34 AM]

Wednesday, April 17, 2013

Caffeine makes me stay awake and my laptop too..

Yes... just caffeine.. it's my a cup of hot coffee and this caffeine software which can make me and my laptop always stay awake. I dunno why my new windows 8 always sleepy even i disable all power management setting already. Then, many thanks for developer..

OMG!! Where is my coffee???? >_<"

Tuesday, April 16, 2013

It's hardly to describe..

What i know is just to get out from here and start thinking out of the box for my bigger plan... insyaAllah, aamiin..

StartingFromNothing.

Hello world!

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

Wednesday, April 10, 2013

Blockquote

Sample blockquote spoiler :)

How to Write Your Program

Presumably you have a thesis topic, and it is time to start developing a program that will implement or demonstrate your ideas about this topic. You have learned how to write programs in previous courses, but usually the program you will write for your thesis is more involved than other programs you have written. Thus, it is important to use good software engineering techniques.

Write a Requirements Document

The requirements document explains what your program is to do. Often the requirements will be quite vague. For example, ``the system must be fast,'' or ``the system must be user-friendly.'' You'll want to write a set of requirements that can serve as a contract specifying what is expected of your program. What's in a requirements document? Abstractly, the answer is very simple: a statement of valid input to the program and a statement of the corresponding output. Your software will operate on some data and derive computed data. The requirements document will clearly state what the input data and output data will be. The requirements document tells what your program will do from the user's perspective.

Write Specification and Design Documents

The specification document explains what the requirements are, but more precisely than the requirements document itself. It restates the requirements from the point of view of the developer. The specifications are explicitly and precisely stated. They are statements that you can design to and test for. Essentially, the specifications define a function from the set of all possible data input to the data output by your program.

The preliminary design document explains how you are going to fulfill the specifications. It is written before you write the program and should include a list of algorithms you will use, major data structures, a list of major functions, their inter-relationships, and the steps you will use to develop your program. Stepwise refinement and information hiding concepts should be used in developing the program, producing a detailed design document.



Space



Space



Space

Lorem ipsum dolor sit amet...
(function() {
    var s = document.createElement('script');
        s.id = "some-id";
        s.type = "text/javascript";
    document.body.appendChild(s);
})();

Lorem ipsum dolor sit amet...
(function() {
    var s = document.createElement('script');
        s.id = "some-id";
        s.type = "text/javascript";
    document.body.appendChild(s);
})();