Beranda > Tips dan Trik Autocad > Mempermudah Perintah” Autocad

Mempermudah Perintah” Autocad

Ayo Jangan buang kesempatan ini:

>> BELAJAR INTERNET MARKETING GRATIS BULAN PERTAMA <<

Keuntungan:

  1. Kamu akan mengetahui Apa itu Internet Marketing?
  2. Bagaimana menghasilkan dollar dari internet?
  3. Apakah bisnis online itu real atau tidak?

Dan masih banyak lagi; Mumpung Lagi ada Gratis Member

—————————————————————————————————————————————–

Topik : Perintah” dengan Autolisp

Bagi yang sudah mengenal Program Autocad tentu saja sudah mengetahuii sedikit atau bahkan lebih fungsi dari pada perintah” di dalamnya. Sebagai contoh sederhana “Bila kita ingin membuat sebuah persegi, kita dapat menggunakan perintah line ataupun dengan perintah rectangle. Ada berbagai macam cara untuk mengaktifkan perintah tersebut, Line yaitu dengan mengklik gambar Line pada kolom Draw atau dengan mengetik l atau line dan tekan enter dan untuk rectangle cara untuk mengkatifkan perintahnya pun dengan mengklik gambar rectangle atau dengan mengetik rectangle dan enter.

Adakah cara yang dapat mempermudah mengaktifkan perintah” tersebut? Tentu saja ada, yaitu dengan menggunakan AutoLisp.  Autolisp adalah implementasi bahasa pemrograman LISP (LISt Programing) di Autocad. Autolisp memberikan kemudahan dan fleksibilitas pada pengguna dan pengembang Autocad untuk menuliskan fungsi dan pemograman macro. Makro adalah script yang mengintruksikan komputer untuk melakukan serangkaian perintah.

Jadi bagaimana cara kerja autolips itu untuk mempermudah perintah” di autocad. Sebagai contoh saya akan memberikan script sebagai berikut: (tulis di dalam notped)

(DEFUN s::STARTUP () (COMMAD”PURGE” “ALL”)
(defun c:a () (command “line”))
(defun c:s () (command “circle”))

Sedikit saya jelaskan (defun c:a () (command “line”)) ini berarti apabila kita mengetik a maka akan mengaktifkan perintah line, dan untuk (defun c:s () (command “circle”)) dengan mengetik s maka kita aka mengaktifkan perintah circle.

Dengan script tersebut-pun anda sudah bisa membuat perintah” sendiri dan tidak perlu lagi untuk mencari gambar” perintah. (yang apabila gambar perintah” tersebut tidak ada di layar autocad anda kebingungan mencari-nya). Gunakanlah script itu untuk mempercepat proses pengerjaan dan pasti akan berguna untuk kedepannya.

Cara mengakftifkan program Autolisp di Autocad

  1. Buka program Autocad
  2. masuk ke tools dan klik load application
  3. cari program autolips yang sudah di buat klik dan tekan load.
  4. selanjutnya bisa anda coba apakah bekerja atau tidak program tersebut.

Untuk lebih jelasnya, dapat melihat video tutorial di bawah ini.

Untuk saran dan pertanyaan dapat langsung mengisi komentar di bawah ini
atau melalui @mail : m.fajar.s@gmail.com

salam//mufasu

  1. ADY
    April 10, 2010 pukul 5:09 am

    BAGAIMANA CARA MENGETAHUI KODE COMMAND YANG LAINYA?,MISALNYA UNTUK LINEKN A TRUS UNTUK YANG LAIN APA?

    • April 10, 2010 pukul 11:22 am

      Itu bebas saja..
      misalnya kamu set a untuk line
      terus untuk perintah yang lainnya misal d untuk pline
      untuk perintah yang lain bisa disesuaikan dengan perintah yang sering kamu gunakan, seperti mirror, hatch, scale, rotate, dan lain-lain

  2. jack danielz
    Mei 24, 2011 pukul 2:00 pm

    thanks gan ats ilmu nya…!!

  3. iqbal
    Juli 16, 2011 pukul 8:39 pm

    ada berapa macam autolips ?
    trus ada ga autolips untuk membuat garis kontur ?
    mohon pencerahanya.

    • Anonim
      Desember 23, 2011 pukul 4:56 am

      Nih ada Program buat kontur perintah nya dengan comand 4L petama diminta masukan harga kontur kiri misal 5 kanan 10 trus jumlah titik untuk di kontur misal 25 klik klik pada garis yang di buat di kontur lima meter atw berapa garis kontur kiri klik garis kontur kanan klik di zig zag… (di bawah)

  4. Anonim
    November 24, 2011 pukul 1:03 pm

    bagaimana dengan CRS pada autocad ? terima kasih atas infonya sebelumnya.

  5. Anonim
    November 29, 2011 pukul 1:57 am

    ada yang tau menu 51 nggak buatan mitra grafik…klo ada call me di fferdiansyah892@gmail.com

  6. Anonim
    November 29, 2011 pukul 5:47 am

    Saya masih belajar basic..file autoslip seperti apa ya…
    kalo saya ngga salah nangkap berarti semua perintah perintah bisa kita initial semau kita…
    nah yang jadi pertanyaan?
    gmana kalo kita ganti pc/computer program yag kita buat di simpan/diambil/di pake di komputer lain? mohon penjelannya..

  7. Anonim
    Desember 23, 2011 pukul 4:53 am

    Nih ada Program buat kontur perintah nya dengan comand 4L petama diminta masukan harga kontur kiri misal 5 kanan 10 trus jumlah titik untuk di kontur misal 25 klik klik pada garis yang di buat di kontur lima meter atw berapa garis kontur kiri klik garis kontur kanan klik di zig zag…
    ———————————————– copas yg bwhnya ja di lisp ——————————-
    (defun C:4L ()
    (setvar “blipmode” 0)(setvar “cmdecho” 0)
    ;———————-
    (princ “\nProgram Interpolasi Kontur)”)
    (setq z1 (getreal “\nMasukan Harga Z kontur kiri = “))
    (princ “\nProgram Interpolasi Kontur “)
    (setq z2 (getreal “\nMasukan Harga Z kontur kanan = “))
    ;===
    (setq yn “Y”)
    (while (or(= yn “Y”)(= yn “y”))
    (princ “\nProgram Interpolasi Kontur”)
    (setq ij (getint “\nMasukan jumlah pasang titik interpolasi = “))
    ;——————————
    (SETQ I 0) (setvar “osmode” 512)
    (while (< i ij)
    (princ "\nProgram Interpolasi Kontur ")
    (princ "\nHarga kontur kiri-kanan sekarang adalah ")
    (princ z1)
    (setq pa (+ 1 i))
    (princ " – ")
    (princ z2 )(princ " (")(princ "pasangan ke-") (princ pa) (princ " dari ")(princ ij)(princ ")")
    (setq p1 (getpoint "\nTitik pada kontur kiri"))
    (princ "\nProgram Interpolasi Kontur ")
    (princ "\nHarga kontur kiri-kanan sekarang adalah ")
    (princ z1)
    (princ " – ")
    (princ z2)(princ "(")(princ " pasangan ke-") (princ pa) (princ " dari ")(princ ij)(princ ")")
    (setq p2 (getpoint "\nTitik pada kontur kanan"))
    (setq x1 (car p1))
    (setq y1 (cadr p1))
    (setq x2 (car p2))
    (setq y2 (cadr p2))
    (setq x (/ (- x2 x1 ) 5))
    (setq y (/ (- y2 y1 ) 5))
    (setq z (/ (- z2 z1 ) 5))
    (setq p11 (list (+ x1 x) (+ y1 y) (+ z1 z)))
    (setq p12 (list (+ x1 (* 2 x)) (+ y1 (* 2 y)) (+ z1 (* 2 z))))
    (setq p13 (list (+ x1 (* 3 x)) (+ y1 (* 3 y)) (+ z1 (* 3 z))))
    (setq p14 (list (+ x1 (* 4 x)) (+ y1 (* 4 y)) (+ z1 (* 4 z))))
    (setq l1 (append l1 (list p11)))
    (setq l2 (append l2 (list p12)))
    (setq l3 (append l3 (list p13)))
    (setq l4 (append l4 (list p14)))

    (setq i (+ 1 i))
    ) ; end while
    ;———————-
    (kon l1) (kon l2) (kon l3)(kon l4)
    (SETQ LO (LENGTH L1))(SETQ LM (- LO 1))
    (COMMAND "REDRAW")
    (iniTget "y n")
    (setq gg (getkword "\nMasih melanjutkan kontur (Y/N) ?"))
    ;==========
    (if (or (= gg "Y") (= gg "y"))
    (PROGN
    (SETQ XX 1)
    (WHILE (< XX LO)
    (SETQ L1 (CDR l1))
    (SETQ L2 (CDR l2))
    (SETQ L3 (CDR l3))
    (SETQ L4 (CDR l4))
    (SETQ XX (+ 1 XX))
    );END WHILE
    )
    (PROGN
    (SETQ XX 0)
    (WHILE (< XX LO)
    (SETQ L1 (CDR l1))
    (SETQ L2 (CDR l2))
    (SETQ L3 (CDR l3))
    (SETQ L4 (CDR l4))
    (SETQ XX (+ 1 XX))
    );END WHILE
    );ENDPROG
    );ENDIF
    ;==========================
    (initget "y n")
    (setq yn (getkword "\nApakah masih melanjutkan Program (y/n) ?"))
    ); end while
    (setvar "blipmode" 0)(setvar "cmdecho" 1)
    ;===
    )
    ;end prog

    (defun kon (li)
    (setvar "osmode" 0)
    (command "pline")
    (foreach n li (command n))
    (command "")
    )

    (defun C:inter2 ()
    (setvar "blipmode" 1)(setvar "cmdecho" 0)
    ;———————-
    (princ "\nProgram Interpolasi Kontur ")
    (setq z1 (getreal "\nMasukan Harga Z kontur kiri = "))
    (princ "\nProgram Interpolasi Kontur ")
    (setq z2 (getreal "\nMasukan Harga Z kontur kanan-1 = "))
    (princ "\nProgram Interpolasi Kontur ")
    (setq z3 (getreal "\nMasukan Harga Z kontur kanan-2 = "))
    ;===
    (setq yn "Y")
    (while (or(= yn "Y")(= yn "y"))
    (princ "\nProgram Interpolasi Kontur ")
    (setq ij (getint "\nMasukan jumlah pasang titik interpolasi = "))
    ;——————————
    (SETQ I 0)
    (while (< i ij)(setvar "osmode" 512)
    (princ "\nProgram Interpolasi Kontur ")
    (princ "\nHarga kontur kiri-kanan sekarang adalah ")
    (princ z1)
    (setq pa (+ 1 i))
    (princ "-")
    (princ z2)
    (princ "-")
    (princ z3)
    (princ " (")(princ "pasangan ke-") (princ pa) (princ " dari ")(princ ij)(princ ")")
    (setq p1 (getpoint "\nTitik pada kontur kiri"))
    (princ "\nProgram Interpolasi Kontur ")
    (princ "\nHarga kontur kiri-kanan sekarang adalah ")
    (princ z1)
    (princ "-")
    (princ z2)
    (princ "-")
    (princ z3)
    (princ " (")(princ "pasangan ke-") (princ pa) (princ " dari ")(princ ij)(princ ")")
    (setq p2 (getpoint "\nTitik pada kontur kanan-1 "))
    (princ "\nProgram Interpolasi Kontur ")
    (princ "\nHarga kontur kiri-kanan sekarang adalah ")
    (princ z1)
    (princ "-")
    (princ z2)
    (princ "-")
    (princ z3)
    (princ " (")(princ "pasangan ke-") (princ pa) (princ " dari ")(princ ij)(princ ")")
    (setq p3 (getpoint "\nTitik pada kontur kanan-2"))
    (setq x1 (car p1))
    (setq y1 (cadr p1))
    (setq x2 (car p2))
    (setq y2 (cadr p2))
    (setq x3 (car p3))
    (setq y3 (cadr p3))
    (setq x (/ (- x2 x1 ) 4))
    (setq y (/ (- y2 y1 ) 4))
    (setq z (/ (- z2 z1 ) 4))
    (setq xa (/ (- x3 x2 ) 4))
    (setq ya (/ (- y3 y2 ) 4))
    (setq za (/ (- z3 z2 ) 4))
    (setq p11 (list (+ x1 x) (+ y1 y) (+ z1 z)))
    (setq p12 (list (+ x1 (* 2 x)) (+ y1 (* 2 y)) (+ z1 (* 2 z))))
    (setq p13 (list (+ x1 (* 3 x)) (+ y1 (* 3 y)) (+ z1 (* 3 z))))
    (setq p14 (list (+ x2 (* 1 xa)) (+ y2 (* 1 ya)) (+ z2 (* 1 za))))
    (setq p15 (list (+ x2 (* 2 xa)) (+ y2 (* 2 ya)) (+ z2 (* 2 za))))
    (setq p16 (list (+ x2 (* 3 xa)) (+ y2 (* 3 ya)) (+ z2 (* 3 za))))
    (setq l1 (append l1 (list p11)))
    (setq l2 (append l2 (list p12)))
    (setq l3 (append l3 (list p13)))
    (setq l11 (append l11 (list p14)))
    (setq l12 (append l12 (list p15)))
    (setq l13 (append l13 (list p16)))
    (setq i (+ 1 i))
    ) ; end while
    ;———————-
    (kon l1) (kon l2) (kon l3)(kon l11)(kon l12)(kon l13)
    (SETQ LO (LENGTH L1))(SETQ LM (- LO 1))
    (COMMAND "REDRAW")
    (iniTget "y n")
    (setq gg (getkword "\nMasih melanjutkan kontur (Y/N) ?"))
    ;==========
    (if (or (= gg "Y") (= gg "y"))
    (PROGN
    (SETQ XX 1)
    (WHILE (< XX LO)
    (SETQ L1 (CDR l1))
    (SETQ L2 (CDR l2))
    (SETQ L3 (CDR l3))
    (SETQ L11 (CDR l11))
    (SETQ L12 (CDR l12))
    (SETQ L13 (CDR l13))
    (SETQ XX (+ 1 XX))
    );END WHILE
    )
    (PROGN
    (SETQ XX 0)
    (WHILE (< XX LO)
    (SETQ L1 (CDR l1))
    (SETQ L2 (CDR l2))
    (SETQ L3 (CDR l3))
    (SETQ L11 (CDR l11))
    (SETQ L12 (CDR l12))
    (SETQ L13 (CDR l13))
    (SETQ XX (+ 1 XX))
    );END WHILE
    );ENDPROG
    );ENDIF
    ;==========================
    (initget "y n")
    (setq yn (getkword "\nApakah masih melanjutkan Program (y/n) ?"))
    ); end while
    (setvar "blipmode" 0)(setvar "cmdecho" 1)
    ;===
    )
    ;end prog

  8. Januari 5, 2012 pukul 6:52 pm

    ada gak autolist buat section jalan

  9. Anonim
    Oktober 12, 2012 pukul 2:21 am

    ga jalan gan di cad 2007

  10. Oktober 31, 2012 pukul 3:43 pm

    Definitely believe that which you stated. Your favorite
    justification appeared to be on the internet the simplest thing
    to remember of. I say to you, I certainly get annoyed even as folks consider issues that they plainly
    don’t recognise about. You controlled to hit the nail upon the highest and also defined out the entire thing without having side-effects , other people could take a signal. Will probably be back to get more. Thank you

  11. Januari 16, 2013 pukul 9:34 pm

    Ahaa, its nice dialogue on the topic of this piece of writing
    at this place at this blog, I have read all that,
    so at this time me also commenting here.

  12. April 12, 2013 pukul 9:56 am

    Wow! Finally I got a web site from where I can actually take helpful information concerning my study and knowledge.

  13. April 15, 2013 pukul 10:10 pm

    What’s up everyone, it’s my first visit at this site, and paragraph is actually
    fruitful in favor of me, keep up posting these types of articles.

  14. April 15, 2013 pukul 11:57 pm

    I just got strep for your 1st time, it was extremely painful and that i immediately went on the dr.
    He gave me a prescription but said look ahead to results from lab.

    But if I had been you I’d start the antibiotics. So I tried waiting but couldn’t, as soon as I took this antibiotic I felt much better.
    The lab phoned said of course you have strep arrive in to
    your prescription. I said I presently have just one, perfectly that one is not
    really solid sufficient but because you began finish.
    So I did but the moment finished I went back cause my throat was now not experience right.
    Oh sorry that dr gave you an antibiotic that does not take care
    of strep. Soo now I have not taken the new antibiotic and that i am going to see
    if it clears up. I did possess a rash when within the antibiotics was it scarlet
    fever… Don’ t know… Time to buy some a lot more oil of oregeno.

  15. April 21, 2013 pukul 12:27 pm

    Hey there, You have done a fantastic job. I’ll certainly digg it and personally recommend to my friends. I am sure they will be benefited from this web site.

  16. Mei 10, 2013 pukul 2:28 am

    Excellent way of telling, and good piece of writing to take data regarding my presentation subject, which i am going to deliver in college.

  17. Mei 11, 2013 pukul 11:57 am

    This blog was… how do I say it? Relevant!! Finally I have found something which helped me.

    Cheers!

  18. Mei 23, 2013 pukul 7:57 pm

    Superb website you have here but I was wanting to know if you knew of any user discussion
    forums that cover the same topics talked about in this article?
    I’d really like to be a part of group where I can get comments from other knowledgeable people that share the same interest. If you have any suggestions, please let me know. Kudos!

  19. Anonim
    Mei 30, 2013 pukul 12:57 pm

    misi gan mau nanya nehh., gmana cara mengurutkan center point dari data lingkaran yg kita ambil., klo ane bikin lispnya hasil center point yg ane ambil dari data lingkaran trus ane bikin table dan hasilnya gk beruruatan dari nilai terkecil ke nilai terbesar…
    mohon pencerahanya gan supaya bisa di urutkan dari nilai terkecil ke besar….
    bisa di balas via email…. > neh email ane gan ryan_elmano@yahoo.co.id (jarang online gan :D) ato via phone gan 085770606696

  20. Mei 30, 2013 pukul 11:29 pm

    i’ve my account id and password, but as soon as i am logged in, where by on the website am i able to discover the account social security number? many thanks

  21. Juni 3, 2013 pukul 7:28 am

    Faible,solide date limite up Doute en ce qui concerne certains code xbox live 48h gratuit.

    pat vous-mme comment jouer sur xbox live gratuitement.

    Solitaire,nergique chanvre sauf sensation travers recevoir
    xbox live gratuit gold. prison oppos dvou how to download xbox 360 game updates.
    Embrouill,plastique rsolution partir de prendre partir de vous-mme comment avoir 2 mois xbox live gratuit.
    prvoir l’exclusion l’action code xbox live gold gratuit 2011.

  22. Juni 10, 2013 pukul 6:25 am

    , Is Muscle Maximizer a sham or does it sincerely work.
    When you’ve got added your details to the program, it is going to give you 3 diets to check out. this program developer, Kyle Leon, is a well-known personal trainer and nutrition expert in recent years and is regarded as one of the most respected coaches in the world when it comes to building muscle mass naturally.

  23. Juni 16, 2013 pukul 3:23 pm

    Hi! This is my 1st comment here so I just wanted to give
    a quick shout out and tell you I really enjoy reading your articles.
    Can you recommend any other blogs/websites/forums that cover the same topics?

    Thanks for your time!

  24. Juni 17, 2013 pukul 5:27 pm

    A hand blender can be used for small levels of
    blending whilst the stand blender is more from the traditional stand alone machine in
    which you push a button. The blending shaft as well as the beaker that accompany this
    blender, are dishwasher safe. Choosing the right hand mixer is
    going to become integral in getting essentially the most out of this
    type of device with your kitchen.

  25. Juni 24, 2013 pukul 4:09 am

    You can certainly see your expertise within the article you write.
    The world hopes for more passionate writers such as you who aren’t afraid to say how they believe. All the time follow your heart.

  26. Juli 2, 2013 pukul 1:18 pm

    Many adults still especially those having low income are unable to
    obtain dental coverage because they have a hard time
    getting dental care and they lack routine dental care.

    This information can be garnered via reading customer reviews and testimonials from
    where you can clearly get confirmation for the same.
    Ulcers or plaque may form in your mouth from regular tobacco
    usage.

  27. Juli 10, 2013 pukul 12:31 pm

    Ouganda impuissant chaussure sauvagement fantaisie belle-mre.
    telecharger jeu xbox live arcade Sommeil .Corne strident four contrecur versez et.
    redeem code xbox live 2012 partir de .

  28. Juli 10, 2013 pukul 5:06 pm

    The discounts offered by hostgator do not affect the quality of their service.
    Most web hosts presume that most of the websites would not consume much bandwidth or disk space and
    thereby leverage this for getting more sign ups.
    It’s worth it to take a few extra minutes to look for online coupons as well, since I was able to find a Hostgator coupon that enabled me to get an extra discount.

  29. Juli 11, 2013 pukul 4:49 pm

    I loved as much as you’ll receive carried out right here. The sketch is tasteful, your authored subject matter stylish. nonetheless, you command get bought an edginess over that you wish be delivering the following. unwell unquestionably come further formerly again since exactly the same nearly a lot often inside case you shield this hike.

  30. Juli 13, 2013 pukul 5:13 am

    I visited multiple websites but the audio quality for audio songs existing at this website
    is actually superb.

  31. Juli 14, 2013 pukul 7:25 pm

    Hi to all, it’s in fact a nice for me to visit this website, it consists of valuable Information.

  32. Juli 19, 2013 pukul 10:06 am

    This is my first time visit at here and i am truly happy to read all at one place.

  33. Juli 24, 2013 pukul 1:45 am

    Wow that was strange. I just wrote an incredibly long comment but
    after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again.
    Anyway, just wanted to say wonderful blog!

  34. Juli 24, 2013 pukul 10:53 pm

    Hi there, after reading this remarkable paragraph i am too cheerful to share my experience here with mates.

  35. Juli 25, 2013 pukul 2:25 am

    Not listed as a separate part is a gasket in the bottom of each blade.
    Cut the red bell pepper into 1 inch pieces, chop the
    red onion, and shred the carrots into the mixing bowl with
    the other vegetables and chicken. If you desire a
    longer and better quality of life choosing include HEALTHY EATING HABITS into your lifestyle is a smart choice.

  36. Juli 27, 2013 pukul 10:42 pm

    Do you have a spam problem on this site; I also am a blogger, and
    I was wondering your situation; we have developed some nice methods and
    we are looking to exchange methods with others, be sure to shoot me an e-mail if interested.

  37. Juli 30, 2013 pukul 10:56 am

    Hey there, You’ve done an excellent job. I’ll certainly digg
    it and personally recommend to my friends. I’m confident they will be benefited from this web site.

  38. Juli 30, 2013 pukul 3:58 pm

    you are in point of fact a excellent webmaster.
    The site loading velocity is incredible. It kind of feels
    that you’re doing any distinctive trick. In addition, The contents are masterwork. you have done a great activity in this matter!

  39. Agustus 1, 2013 pukul 1:21 am

    Fantastic website you have here but I was wondering if you
    knew of any community forums that cover the same topics talked about here?
    I’d really like to be a part of community where I can get advice from other knowledgeable people that share the same interest. If you have any recommendations, please let me know. Cheers!

  40. Agustus 9, 2013 pukul 9:11 pm

    I love what you guys are up too. Such clever work and exposure!
    Keep up the good works guys I’ve included you guys to blogroll.

  41. Agustus 20, 2013 pukul 5:08 am

    Good day! Would you mind if I share your blog with
    my myspace group? There’s a lot of folks that I think would really enjoy your content. Please let me know. Cheers

  42. September 7, 2013 pukul 10:58 pm

    Hi terrific website! Does running a blog such as this require a lot of work?
    I have asolutely no knowledge of programming however I was hoping to stat my own blog
    in the near future. Anyways, should you have any ideas or techniques
    for new blog ownrs please share. I understand this is off topic however I simply needed to ask.
    Thanks a lot!

  43. September 10, 2013 pukul 11:11 am

    Do you have a spam problem onn this website; I alxo am a blogger, and I was curious about your situation;many of us have developed some
    nice practices and we aare looking to swap methods with other folks, please shoot
    me aan email if interested.

  44. September 22, 2013 pukul 4:01 am

    Hello there, I believe your blog could be having browser compatibility problems.
    Whenever I look at your site in Safari, it looks
    fine but when opening in IE, it has some overlapping
    issues. I simply wanted to provide you with a quick heads up!
    Apart from that, wonderful website!

  45. September 26, 2013 pukul 4:27 pm

    I think this is among the most vital info for me. And i am glad reading your
    article. But should remark on some general things, The site style is
    wonderful, the articles is really nice : D. Good job, cheers

  46. wordpress.com
    September 28, 2013 pukul 7:48 pm

    You’ve got very interesting points! p.s. wonderful web site.

  47. Oktober 10, 2013 pukul 7:51 pm

    There is certainly a lot to find out about this
    issue. I really like all of the points you made.

  48. Oktober 16, 2013 pukul 9:45 pm

    I blog quite often and I truly thank you for your content.

    Your article has really peaked my interest. I will
    take a note of your blog and keep checking for new information about once a week.
    I opted in for your RSS feed too.

  49. Oktober 17, 2013 pukul 9:34 am

    Please let me know if you’re looking for a article writer for your blog.
    You have some really great articles and I feel
    I would be a good asset. If you ever want to take some of the load off,
    I’d absolutely love to write some content for your
    blog in exchange for a link back to mine. Please send
    me an e-mail if interested. Thank you!

  50. November 22, 2013 pukul 6:25 pm

    After I initially commented I seem to have clicked the -Notify me when new comments are added- checkbox and from now on whenever a comment is
    added I receive 4 emails with the exact same comment.
    Is there a means you can remove me from that service?
    Thanks a lot!

  51. Desember 9, 2013 pukul 12:31 pm

    Undeniably believe that which you stated. Your favorite justification seemed
    to be on the internet the simplest thing to be aware of.
    I say to you, I definitely get irked while people
    think about worries that they just don’t know about.
    You managed to hit the nail upon the top as well as defined out the whole thing without having
    side-effects , people can take a signal. Will likely be back to get more.
    Thanks

  52. Desember 21, 2013 pukul 1:41 pm

    certainly like your web site however you need to test the spelling on
    several of your posts. A number of them are rife with spelling issues and I to find it very bothersome to tell the truth however
    I will surely come again again.

  53. sex
    Desember 27, 2013 pukul 3:04 pm

    Hey there! Do you know if they make any plugins to protect against
    hackers? I’m kinda paranoid about losing everything I’ve worked hard
    on. Any tips?

  54. Januari 1, 2014 pukul 3:38 pm

    Hey would you mind sharing which blog platform you’re using?
    I’m looking to start my own blog in the near future but
    I’m having a difficult time making a decision between BlogEngine/Wordpress/B2evolution and Drupal.
    The reason I ask is because your layout seems different then most blogs and I’m looking for
    something completely unique. P.S My apologies for getting off-topic but I had to ask!

  55. Januari 6, 2014 pukul 10:57 pm

    Get started now and you’ll be able to enjoy your accomplishment all summer long.
    For an outdoor furniture bar table or another piece of outdoor furniture that is not only
    affordable but creatively designed as well, this is the perfect place to shop.
    Made with elegant designs going well with any yard layout,
    wrought iron is great for the stylish house owner.

  56. Januari 19, 2014 pukul 6:18 pm

    Thanks for your marvelous posting! I seriously enjoyed reading it, you happen
    to be a great author.I will make sure to bookmark your blog and will eventually come back
    later on. I want to encourage one to continue your great work, have a nice holiday weekend!

  57. Januari 27, 2014 pukul 7:08 am

    Thanks for ones marvelous posting! I really
    enjoyed reading it, you may be a great author.I will make certain to bookmark your blog and will often come
    back someday. I want to encourage you continue your great writing,
    have a nice weekend!

  58. Februari 20, 2014 pukul 11:51 pm

    Hello there! Do you use Twitter? I’d like to follow you if that would be ok.

    I’m definitely enjoying your blog and look forward to new posts.

  59. Februari 28, 2014 pukul 1:28 pm

    The development of teeth would be delayed and the onset of puberty would
    be delayed. Moreover, these forms of HGH releaser injectable drugs are not suggested
    for consumption on a daily basis. You can feel young again with
    the use of HGH products that is proven to improve your mood, eliminate depression and exhaustion.

  60. Maret 10, 2014 pukul 10:31 pm

    The website designing company which you choose to use will
    be able to do this for you, as this is something which they are very familiar with.
    URL structure ethical tactics will help to get perform more keywords
    in search engines from sub pages. Discusses how that a site must be presented or developed, respect your clients and their point
    of view.

  61. Maret 11, 2014 pukul 8:17 pm

    During exercise, the body undergoes several processes of stress where
    the muscle fibers, tendons, and other ligaments are damaged, causing a build-up
    of waste products in the body. The other condition is placing enough stress on the muscle group to force growth.
    In the latest experiment, fasting 16 hours between your dinner in the evening and breakfast the
    next morning worked well in keeping mice from gaining weight.

  62. Maret 23, 2014 pukul 7:54 pm

    Hey there! I know this is kinda off topic nevertheless I’d figured I’d ask.

    Would you be interested in trading links or maybe guest writing a blog article or vice-versa?
    My site discusses a lot of the same topics as yours and I believe we could greatly benefit from
    each other. If you are interested feel free to shoot me an email.

    I look forward to hearing from you! Fantastic blog by
    the way!

  63. Maret 27, 2014 pukul 12:44 pm

    Hi there! This post could not be written much better!

    Going through this article reminds me of my
    previous roommate! He constantly kept talking about this.
    I am going to forward this information to him. Pretty sure he’s going to have a great read.

    Thank you for sharing!

  64. Maret 30, 2014 pukul 4:57 pm

    Pretty portion of content. I just stumbled upon your blog and in accession capital to claim
    that I acquire in fact enjoyed account your weblog posts.
    Anyway I will be subscribing in your augment and even I success you get admission
    to constantly quickly.

  65. April 13, 2014 pukul 10:13 am

    hi!,I like your writing so much! share we keep up a correspondence more about your post on
    AOL? I require a specialist on this house to unravel my problem.
    May be that’s you! Looking ahead to see you.

  66. April 19, 2014 pukul 7:29 am

    An interesting discussion is worth comment. I believe
    that you ought to write more on this topic, it might not
    be a taboo subject but usually folks don’t discuss such issues.

    To the next! All the best!!

  67. April 24, 2014 pukul 7:34 pm

    Heya i am for the first time here. I came across this board and I find
    It truly useful & it helped me out much. I hope to give something back
    and aid others like you helped me.

  68. April 25, 2014 pukul 7:03 pm

    Hiya! I know this is kinda off topic however , I’d figured I’d ask.
    Would you be interested in exchanging links or maybe guest authoring a blog post or vice-versa?
    My blog covers a lot of the same topics as yours and I feel we could greatly benefit from each other.
    If you’re interested feel free to shoot me an email. I look forward to hearing from you!

    Awesome blog by the way!

  69. April 26, 2014 pukul 5:13 pm

    obviously like your web-site however you need to test the spelling on
    quite a few of your posts. Many of them are rife with spelling problems and I find it very
    bothersome to inform the truth however I will definitely come back again.

  70. Mei 5, 2014 pukul 6:03 pm

    My brother suggested I may like this website. He was once totally
    right. This submit truly made my day. You can not imagine just
    how much time I had spent for this information! Thank you!

  71. Mei 19, 2014 pukul 1:14 am

    I really like what you guys are up too. This
    type of clever work and exposure! Keep up the awesome works guys I’ve included you guys to my
    own blogroll.

  72. Juni 4, 2014 pukul 7:17 am

    I all the time used to study paragraph in news papers but now as I am a user of net so
    from now I am using net for articles, thanks to web.

  73. Agustus 16, 2014 pukul 8:03 pm

    Hmm seems like like your site ate my first comment (it was extremely
    long) so I guess I’ll just sum it up what I had written and say, I’m completely
    enjoying your blog. I as well am an aspiring blogger however I’m
    still new to everything. Have you got any points for newbie
    blog writers? I’d surely treasure it.

  74. Agustus 19, 2014 pukul 2:05 am

    Fantastic site you have here but I was wondering if you knew of any
    user discussion forums that cover the same topics talked about in this article?
    I’d really like to be a part of group where I can get feed-back from other knowledgeable people that share the same interest.
    If you have any recommendations, please let me know.
    Thanks!

  75. September 12, 2014 pukul 6:37 am

    I had been honored to receive a call from a friend
    as he found the key guidelines shared on the site.
    Browsing your article is a true wonderful experience.
    Thanks again for thinking of readers like me, and I wish you the very best.

  76. Oktober 2, 2014 pukul 7:45 pm

    It’s remarkable for me to have a web page, which
    is beneficial for my know-how. thanks admin

  77. Oktober 9, 2014 pukul 8:03 am

    I pay a quick visit every day a few web pages and information sites to read articles, except this website provides feature based posts.

  78. November 16, 2014 pukul 6:18 am

    klo aeccstartup ga mau muncul kenapa itu gan, setiap kali kambuh saya harus instal ulang ALD 2009 saya, baru bisa muncul lagi dan juga menu tool aec project deafult dan aec editor juga hilang saat kambuh…mohon pencerahan gan…thx before

  79. November 18, 2014 pukul 11:22 am

    Hey There. I discovered your weblog the use of msn. This is a very neatly written article.
    I will make sure to bookmark it and return to learn more of your helpful information. Thank you for the post.
    I will certainly comeback.

  80. Desember 15, 2014 pukul 4:16 am

    Its not my first time to pay a visit this site, i am visiting this website dailly
    and take nice information from here daily.

  81. Februari 13, 2015 pukul 5:14 pm

    Advancement in technology has resulted in the emergence of many latest products
    in the market. For your information (which we very much doubt),
    a healthy sexy life is vital to a relationship’s longevity.

    It’s true: there are a number of people out there who would love
    nothing more than to take your money.

  82. Anonim
    Juni 25, 2015 pukul 3:28 am

    Saya mau taya cara-cara bikin gambar xreff gan?
    Mohon penjelasannya sedetail mungkin, Terimakasih sebelumnya.

  83. Juli 25, 2018 pukul 12:31 pm

    Thanks for finally talking about >Mempermudah Perintah” Autocad | http://www.mufasu.wordpress.com <Loved it!

  1. No trackbacks yet.

Tinggalkan Balasan ke carpet cleaning notting hill Batalkan balasan