GPT/MBR

Posted on May 19th, 2014

[Linux]
  1. Remove GPT - Default back to MBR: http://unix.stackexchange.com/questions/61142/remove-gpt-default-back-to-mbr
    parted /dev/sda
    mklabel msdos
    quit
  2. How to Convert GPT to MBR on Linux: http://www.ehow.com/how_12119053_convert-gpt-mbr-linux.html
    apt-get install gdisk
  3. Create and format exFAT partition from Linux : http://unix.stackexchange.com/questions/61209/create-and-format-exfat-partition-from-linux
    mkfs.exfat /dev/sdX1 , mkfs.exfat /dev/sdX2..... for the rest of partitions
  4. 9 Linux Parted Command Examples : http://www.thegeekstuff.com/2011/09/parted-command-examples/

[Articles]
  1. Booting from GPT : http://www.rodsbooks.com/gdisk/booting.html
  2. Intel Mac can't have more than 4 partitions? : http://superuser.com/questions/160224/intel-mac-cant-have-more-than-4-partitions
  3. Using GPT Drives : http://msdn.microsoft.com/en-us/library/windows/hardware/dn653580(v=vs.85).aspx
  4. MacBook Pro bootcamp Windows cant see GPT partitions : http://www.insanelymac.com/forum/topic/294367-macbook-pro-bootcamp-windows-cant-see-gpt-partitions/
  5. What is the maximum number of partitions that can be made on a hard drive? : http://superuser.com/questions/368173/what-is-the-maximum-number-of-partitions-that-can-be-made-on-a-hard-drive
  6. Windows and GPT FAQ : http://msdn.microsoft.com/en-us/library/windows/hardware/dn640535(v=vs.85).aspx
  7. Using the New GUID Partition Table in Linux (Goodbye Ancient MBR): http://www.linux.com/learn/tutorials/730440-using-the-new-guid-partition-table-in-linux-good-bye-ancient-mbr-
  8. GPT and MBR: http://www.doc88.com/p-4671617917182.html
  9. http://unix.stackexchange.com/questions/114485/fdisk-l-shows-ext3-file-system-as-hpfs-ntfs
[Windows]
  1. https://blogs.aalto.fi/ltuuri/2011/03/10/diskpart-format-exfat/

gcode

Posted on May 12th, 2014

[Tools]
  1. gcode viewer: http://gcode.ws/


Repetier

Posted on May 12th, 2014

[Install on Window]
  1. Error message : Error drawing 3d view
    1. Install the OpenTK : http://www.opentk.com/
    2. Enable all of the the OpenGL functions from driver.
    3. Printer Settings
[Install on Ubuntu 12.04]
  1. Download the Repetier from internet : http://www.repetier.com/download/
  2. unzip the tgz file.
  3. The default Slic3r has some error during compliing, mv the Slic3r folder, and git the new source code from internet.
    git clone https://github.com/alexrj/Slic3r.git
    https://github.com/alexrj/Slic3r/issues/1690
  4. ./configureFirst.sh
    If you got some perl error, remember to instll the perl modules.
      1. cpan
      2. install CPAN
      3. reload cpan
    [Repetier Install]
    1. cpanm -v ./xs
    2. cpan
    3. install Test
    4. Change the SMUELLER/ExtUtils-ParseXS-3.18_04.tar.gz to SMUELLER/ExtUtils-ParseXS-3.24.tar.gz in the Slic3r/Build.PL
      http://forums.reprap.org/read.php?267,354971
  5. repetierHost

Slic3r

Posted on May 8th, 2014

[Configuration]
[Usage]
  1. Slic3r的使用介绍: http://jennyprinter.com/wiki/index.php/Slic3r%E7%9A%84%E4%BD%BF%E7%94%A8%E4%BB%8B%E7%BB%8D
  2. Slic3r_教程(转): http://www.xyzdiy.com/forum.php?mod=viewthread&tid=5619
  3. 3D印表機 DIY 建構筆記: http://diy3dprint.blogspot.tw/2013/09/slic3r.html
  4. Manual : http://manual.slic3r.org/
  5. Fill pattern 內部填充的型態 : http://diy3dprint.blogspot.tw/2013/09/slic3r-fill-pattern.html
  6. Top/bottom fill pattern:頂面、底面填滿時使用的型態 : http://diy3dprint.blogspot.tw/2013/09/slic3r-topbottom-fill-pattern.html
  7. Start Perimeters at Concave Points : http://diy3dprint.blogspot.tw/2013/12/slic3r-100rc1-start-perimeters-at.html
  8. Slic3r 特色功能:可變層高 : http://diy3dprint.blogspot.tw/2013/12/slic3r.html

[Raft]
  1. 怎麼設定,棧板(Raft) 才會好拆?: http://diy3dprint.blogspot.tw/2014/01/raft.html
  2. 老俞搞技術: http://blog.xueming.org/archives/141
  3. Slic3r Support Material Settings?: http://forum.lulzbot.com/viewtopic.php?f=8&t=565
    Change your pattern spacing to 4 or 5mm
[Gcode]
  1. http://diy3dprint.blogspot.tw/2014_01_01_archive.html
    線寬0.4mm
    層高0.2mm
    第一層溫度190度
    溫度190度
    回抽距離1mm
    回抽速度10mm/s
    回抽抬高Z軸0.2mm
    支撐型態Medium support
    支撐角度60度
    支撐間隙0.2mm
    列印速度約50mm/s


[Retraction]
  1. jhead speed : 10mm/s , EDA : 20mm/s
[Extra length on restart]


Perl

Posted on May 7th, 2014

[Install]
  1. Switch.pm: http://askubuntu.com/questions/204481/how-to-install-perl-switch-pm-module-required-to-build-webkit-gtk
    1. cpan
    2. install module_name ( c:>install Switch)
  2. Install new CPAN
    1. cpan
    2. install CPAN
    3. reload cpan
[Repetier Install]
  1. cpanm -v ./xs
  2. cpan
  3. install Test
  4. Change the SMUELLER/ExtUtils-ParseXS-3.18_04.tar.gz to SMUELLER/ExtUtils-ParseXS-3.24.tar.gz in the Slic3r/Build.PL


Coding

Posted on March 28th, 2014

  1. 想學程式設計,你怎麼能錯過這 31 個學 Coding 的網站: http://techorange.com/2014/03/27/best-resources-to-learn-code/
  2. 11 步驟就是成為頂尖 Coder 的必備條件: http://techorange.com/2014/07/09/step-step-path-becoming-great-software-developer/


Sculptris

Posted on March 27th, 2014

  1. 免費3D版液化軟體《Sculptris》輕鬆創造出聖誕版金黃小鴨: http://www.minwt.com/life/9635.html
  2. 簡易3D繪製軟體《Sculptris》輕巧簡易隨手瞎搞屬於你的外星人: http://steachs.com/archives/1577
  3. Sculptris 使用解說: http://blog.yam.com/livy0714/article/29065360
  4. 【3D教學】 Sculptris 3D蛋糕製作: http://www.tdd.com.tw/chinese/class.aspx?id=41
  5. Sculptris 使用說明與心得: http://thundercat-ghlin.blogspot.tw/2010/06/sculptris_24.html


3D Print

Posted on March 27th, 2014

  1. 3D成型的五大趨勢: http://www.makezine.com.tw/1/post/2013/03/3d4.html
  2. 3D列印沒這麼難! 輕輕鬆鬆就上手: http://www.accupass.com/event/register?eid=159126982044286
  3. 把表妹的黏土公仔變3D模型-埃及死亡之神阿努比斯的製作: http://7inkit.blogspot.tw/2014/03/3d.html
  4. Autodesk 123D: http://www.3doprint.com/3314.html