首頁 美術繪圖 | 美術設計 | 熱門標籤 | 首選 | 首頁宣傳 | 近期作品 論壇: 發表 | 美術工作 | 美術比賽 | 展覽活動 | 美術相關 | 一般討論 | 美術同好 CG 討論 :: Photoshop | Painter | 3D 行動 | AMP

【 立即註冊 】 : 更改個人資料 : : 登入

會員名稱: 登入密碼: 保持登入
Type(Type) 所有的發表文章

前往頁面 ←上一頁  1 ... 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 ... 558  下一頁→

Banner update(2012-09-26 10:27)

[center]Landscape Concept[/center]
##DIV##
[center]
[h1]場景設計/人物設定 Char Design & Landscape/Scene Concept - 波波[/h1]
石像(小) 場景概念:石像 - Landscape Concept
飛船 太空飛船 - Space Mother Ships
賽德克巴萊 賽德克巴萊 - Seediq Bale Robot
場景-1 星球電力公司 - Electricsity Planet
海砂(小) 場景練習:岩石上的旗魚 - Scene Design
任我行 -小 霸主歸來-任我行 - Wuxia Novel Fan Art Design
[hr]
More 波波(e04su3su6)'s Artoworks
http://vovo2000.com/paintbbs/art/e04su3su6/
http://vovo2000.com/artist/e04su3su6/tags/
[hr]
See Also:
[url=http://vovo2000.com/tags/場景/]
「場景」相關創作 :: "Scene/Landscape" Design
[/url]

[url=http://vovo2000.com/tags/機械/]
「機械」相關創作 :: "Machine/Robots" Creation Painting
[/url]

[url=http://vovo2000.com/tags/人設/]
「人設」相關創作 :: "Sci-fi Fantasy" Artworks Creation
[/url]

[/center](2012-09-26 10:24)

[h1]Setup Enable PPTP VPN @ uBuntu 12.04 LTS[/h1]

(execute these command with "sudo" or as root)


代碼:

1. apt-get install pptpd   (Install it)
   service pptpd stop      (Stop it)
   

2. vi /etc/pptpd.conf  (Just Uncomment them, the "Recommended")
   => localip 192.168.0.1
   => remoteip 192.168.0.234-238,192.168.0.245

3. vi /etc/ppp/chap-secrets
   => <username> pptpd <password> *

   e.g.  jack pptpd  jack1234  *
         rose pptpd  rose5566  *

4. vi /etc/ppp/options (Change DNS for VPN Users)
   => ms-dns 8.8.8.8
   => ms-dns 168.95.1.1

5. vi /etc/sysctl.conf  (Enable Packet Forwarding)
   => net.ipv4.ip_forward=1

6. sysctl -p              (Reload Sysctl.conf)

7. service pptpd start    (or Restart it)

8. /sbin/iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -o eth0 -j MASQUERADE

   

(2012-09-25 19:56)

[h1]AWS EC2 Micro vs Linode 512 @ CPU Performance[/h1]

Linode 512 (Single thread mode) @ 32-bits UBUNTU 12.04 LTS
kernel: 3.5.x
代碼:

Function      Rate (MB/s)   Avg time     Min time     Max time
Copy:        4194.5695       0.0079       0.0076       0.0084
Scale:       3928.7337       0.0087       0.0081       0.0101
Add:         4740.7633       0.0105       0.0101       0.0111
Triad:       4422.7079       0.0115       0.0109       0.0128


AWS EC2 Micro (Single Thread mode) @ 32-bits UBUNTU 12.04 LTS
kernel: 3.2.x
代碼:

Function      Rate (MB/s)   Avg time     Min time     Max time
Copy:        3588.2845       0.0089       0.0089       0.0090
Scale:       3387.3353       0.0096       0.0094       0.0099
Add:         4096.9579       0.0117       0.0117       0.0118
Triad:       3905.9082       0.0123       0.0123       0.0123
(2012-09-25 19:35)

[h1]What is Whoopsie @ Linux?[/h1]

Q: What is Whoopsie? Is this trojan-horse or harmful?

A: WHOOPSIE is an uBuntu Crash Report Mechanism.
It is a Username and a Process name.
No HOME, No Shell, won't be harmful.


Q: How to disable it?

A: I guess sudo to remove/unlink the link whoopsie @ /etc/init.d
and then a reboot will disable it.

Yet, suggest not to remove it,
since it consumes very __little__ CPU/MEM in theory,
nearly no overhead in most server/desktop environment.

Q: I didn't see that at uBuntu 10.04 LTS?

A: True.
Compared to 10.04 LTS,
It seems to be appeared around 12.04 LTS



代碼:

# ls -al /var/crash/
total 8
drwxrwsrwt  2 root whoopsie 4096 Apr 27 00:14 .
                   ^^^^^^^^
# cat /etc/passwd | grep whoopsie
whoopsie:x:103:106::/nonexistent:/bin/false
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

# ps aux | grep whoopsie
whoopsie  2195  0.0  0.4  24448  2380 ?        Ssl  Sep18   0:07 whoopsie
^^^^^^^^                                                         ^^^^^^^^

# ls -al /etc/init.d/whoopsie
lrwxrwxrwx 1 root root 21 Apr 30 23:55 /etc/init.d/whoopsie -> /lib/init/upstart-job
                                                   ^^^^^^^^^

# whereis whoopsie
whoopsie: /usr/bin/whoopsie
^^^^^^^^^^^^^^^^^^^^^^^^^^^
(2012-09-24 11:54)

[h1]Fix/Recover Corrupted Sqlite3 Database Files[/h1]

[h2]1. Do PRAGMA integrity_check or quick_check[/h2]

C:\>sqlite3.exe corrupted_files.db
SQLite version 3.7.14 2012-09-03 15:42:36
Enter ".help" for instructions
Enter SQL statements terminated with a ";"


sqlite> pragma quick_check;
*** in database main ***
On page 2 at right child: invalid page number 256
Page 233 is never used
sqlite>


If you see "OK", then the database files would be good in theory.


[h2]2. Found SQLite Error, Dump whatever we could dump[/h2]
代碼:

sqlite> .dump


or

代碼:

C:\>echo .dump | sqlite3.exe corrupted_files.db > corrupted_files.TXT



[h2]3. Review and Edit the TXT SQL files[/h2]

(3.1) Edit & Review the SQL TXT to see if how many data you save back;
(3.2) At EOF, remove "ROOLBACK;", add "COMMIT;"
(3.3) Save the TXT file

代碼:

PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE `tttt` (`snoo` INTEGER PRIMARY KEY  NOT NULL  DEFAULT '', `ipad` INTEGER DEFAULT '', `urii` VARCHAR DEFAULT '', `date` DATETIME DEFAULT CURRENT_DATE);
INSERT INTO "tttt" VALUES(0,0,'http://vovo2000.com/paintbbs/','2010-08-22');
...
... (...SNIP...)
...
INSERT INTO "tttt" VALUES(58863,0,'https://www.google.com.tw/','2012-08-07');
/**** ERROR: (11) database disk image is malformed *****/
/**** ERROR: (11) database disk image is malformed *****/
/*** REMOVE THIS LINE!!! ANALYZE sqlite_master; ***/
/*** REMOVE THIS LINE!!! ROLLBACK; -- due to errors ***/

/*** ADD COMMIT at last line ***/
COMMIT;


[h2]4. Backup and Load SQL TXT into Sqlite[/h2]

(4.1) copy/cp corrupted_files.db __corrputed__backup.db
(4.2) delete/rm corrupted_files.db
(4.3) Load revised SQL TXT to re-init

代碼:

C:\>sqlite3 -init corrupted_files.TXT corrupted_files.db
-- Loading resources from corrupted_files.db

SQLite version 3.7.14 2012-09-03 15:42:36
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> select count(*) from tttt;
40095
sqlite> PRAGMA quick_check;
ok
sqlite>
(2012-09-19 12:39)

[h1]Linode VPS Xen 簡易教學/購買/常見使用問答[/h1]

[hr]
Q: Linode 網路頻寬怎樣?
A: 實測結果部分的頻寬比某些台灣大型網站還大。

請自行測試: http://www.linode.com/speedtest/


[hr]
Q: {External --> Linode} 頻寬計費嗎?
A: 免費,只有 {Linode --> External} 才會算入。

e.g. 例如你的網站搬家時,不用擔心初始上傳時的頻寬佔用。

備註: Linode, hicloud, AWS 剛開始時這部份都要計費,後來競爭激烈後,inbound 逐漸都免費。

[hr]
Q: Linode CPU Performance 處理器效能怎樣?
A: 這是透過 Stream 跑的效能 @ Linode 512 (2012 yr)

Stream @ https://www.cs.virginia.edu/stream/
代碼:

# stream_x86

Function      Rate (MB/s)   Avg time     Min time     Max time
Copy:        4194.5695       0.0079       0.0076       0.0084
Scale:       3928.7337       0.0087       0.0081       0.0101
Add:         4740.7633       0.0105       0.0101       0.0111
Triad:       4422.7079       0.0115       0.0109       0.0128



[hr]
Q: Linode Disk Performance 虛擬硬碟效能怎樣?
A: 這是透過 HDparm -t / -T 跑的效能 @ Linode 512 (2012 yr)

代碼:

# hdparm -t /dev/xvda

/dev/xvda:
Timing buffered disk reads: 668 MB in  3.00 seconds = 222.60 MB/sec
Timing cached reads:   12992 MB in  1.99 seconds = 6532.85 MB/sec



[hr]
Q: Linode 使用哪一種虛擬化技術(KVM, OpenVZ, Xen)?
A: Linode 使用 Xen Hypervisor


[hr]
Q: Xen 可以裝 Windows Server 2003/2008 嗎?
A: 目前不行,只能裝 Linux。

[hr]
Q: Linode Xen 目前提供哪幾種 Linux Distro? 32/64-bit 都有嗎?[/color]
A: 主流的 ArchLinux, openSUSE, Debian, Ubuntu(LTS), Fedora, CentOS 32/64-bit 都有。

[hr]
Q: Linode Xen 會 Oversell 嗎?
A: Xen 虛擬技術的本質就是不容易 Oversell,至少 RAM 和 Disk 這一塊不容易。
相較來講 OpenVZ 就可能比較容易 Oversell。


[hr]
Q: Xen vs OpenVZ 效能和架構上有和差別?

A1: 記住,這只是「舉例形容」==> 架構上 Xen 比較接近 Dedicated Server,OpenVZ 某方面接近於 Web Fraction

A2: Xen 的 Kernel/FS/Cache/... 都算你的 VM 的一部分,OpenVZ 的 kernel/FC/Cache 則算是 Hypervisor 的。

A3: 效能上 OpenVZ 宣稱 1% Overheads,Xen 宣稱 2~3% Overheads


[hr]
Q: Linode 使用上什麼限制嗎?
A: 只要不觸犯當地法律、不惡意攻擊、不中毒,
你要跑 P2P、DNS、IRC、Streaming、Web、FTP、VPN、Game Server
或者單純拿來做大量平行計算等等,都可以。

只要符合 ToS,理論上愛裝什麼就裝什麼。


[hr]
Q: 使用 Linode 需要基本的 Linux 管理技術嗎?
A: 個人建議還是要有「基本的」 Linux/Unix 使用者知識。


[hr]
Q: 但,我只要基本的 LAMP,有「Step-By-Step」的文件可以看嗎?
A: 有的 http://library.linode.com/lamp-guides

[hr]
Q: 透過什麼方式來存取 Linode Linux?
A: 基本的方式就是 ssh, sftp, 後台的控制台還有一個 AJAX 寫成的 ssh。


[hr]
Q: 除了預設的頻寬/空間/IP位址外,可買額外的頻寬、空間、IP Address 嗎?
A: 後台的「Extra」可以隨時買,或者升級整個 package。
升級 Package 約有 15 分鐘的 Down time。


[hr]
Q: 支援 IPv6 位置嗎?
A: 支援。 預設會拿到兩個固定 IP 位址,{ipv4 + ipv6},可跑 IPv4 + IPv6 Dual stack。


[hr]
Q: 那麼我怎麼去設定固定 IP 位址?
A: 提供的 Distro 開機時是跑 DHCP,不過 Linode DHCP Server 他給你的 IP Adress 永遠是「固定的」,所以不用擔心。


[hr]
Q: 支援 DNS 代管嗎? 有反查服務嗎?[/color]
A: 支援 DNS 代管和反查,而且是免費的服務。


[hr]
Q: Linode DNS 代管支援 Google Apps MX/SPF/DKIM 嗎?
A: 支援,測試過 MX, CNAME, SPF, Domain Keys for Google Apps Gmail 沒問題。


[hr]
Q: 支援每日備份嗎?
A: 支援,但是備份服務「需要付費」,費用約等於 20 ~ 25% 每月費用,可自行到後台購買。


[hr]
Q: Linode 提供的 Linux Distro 似乎沒有視窗 (X Window/Gnome)?
A: 是的,否則一裝上去空間就沒剩下多少。 可透過 apt-get/yum 自行安裝。


[hr]
Q: 沒額外安裝 apache/mysql/gcc/git/php 等軟體的狀況下,預設開啟起來 Disk/Memory 佔多少?
A: Disk 約佔去 2~5 GB,Memory 約佔去 30 ~ 90 MB。
代碼:

# df -h

or

# head /proc/meminfo



[hr]
Q: 後台安裝時,應該選擇 32-bit or 64-bit 的 distro?
A: 要看 application + package 組合而定。

如果是 Linode 4096 以上的 package,建議一定用 64-bit distro。
其他的則看後台的建議,或者你 app 實測的結果,反正後台重灌不用錢又快速,
實測是最好的方式之一。

[hr]
Q: Linode Linux Swap 空間應該設定多少?
A: 看狀況,一般來說 0.5 ~ 2 * {RAM Size} 都是可接受的範圍。


[hr]
Q: 後台的 Shutdown/Reboot 和我自己下 reboot 有和不一樣?
A: 一樣,「不用擔心」沒有 sync 可能導致 page cache 內的資料流失。

代碼:

reboot   system boot  3.5.2-linode45   Tue Sep 18 05:55 - 05:56  (00:00)



[hr]
Q: 買了 Linode 之後多久可 Login?
A: 買完瞬間可近後台;
切 partition 安裝 distro 大概 5 ~ 10 分鐘就可完成,進入 ssh 連線。



[hr]
Q: 看不懂英文怎麼辦?
A: 嗯,那就給台灣人賺吧,台灣也有一些廠商提供 VM Hypervisor VPS,如 HiCloud, FET Cloud, MiCloud,
這些都是大手廠商,不用擔心他們會倒(我記得國外有一家風評尚可的 fsckvps 莫名其妙就倒了),
或者說「倒了,也找的到人負責」
而且可安裝 Windows Server 2003/2008/2012,並同時促進台灣經濟。

最重要的是,國語、台語都通。

不過要注意,有些是「頻寬內含」,有些則是「頻寬另外算錢」,有些廠商「頻寬價錢沒寫(要和 sales 談)」
e.g.
神達集團 http://portal.micloud.tw/
中華電信 http://hicloud.hinet.net/
遠傳電信 http://www.fetnet.net/enterprise/cs/Satellite/EBU/ebRecoContent?aid=3000004016000&WT.srch=1&WT.mc_id=30000000003503





其他 Linode 相關問答,
可自行參考 Linode Lib 文件寫的十分詳細,建議稍微瞄一下
=> http://library.linode.com/



_(2012-09-18 15:35)

[center]CG Girls Syh3[/center]
##DIV##
[center]
[h1]CG Girls 電繪少女美術創作 - 鴉參(syh3iua83)[/h1]
nagoD なごり雪 - Last Snow
natuP (2) 世界系夏祭 - Global Summer Festival
rochiP 路地裏賢者 - Sage at Back Lane
8 山丘上 , 和你訴說 - Memory around the Hill
ceP Banished Cellist
mina 宇宙水體 - Swimming Suit CG
[hr]
More 鴉參(syh3iua83)'s Artoworks
http://vovo2000.com/paintbbs/art/syh3iua83/
http://vovo2000.com/artist/syh3iua83/tags/

[hr]
See Also:
[url=http://vovo2000.com/tags/少女/]
「少女」創作 :: "Girls" Illustration Artworks

[/url]

[url=http://vovo2000.com/tags/場景/]
「場景」相關創作 :: "Scene/Landscape" Design
[/url]

[url=http://vovo2000.com/tags/電繪/]
「電繪」相關創作 :: "CG" Creation Painting
[/url]

[url=http://vovo2000.com/tags/奇幻/]
「奇幻」相關創作 :: "Sci-fi Fantasy" Artworks Creation
[/url]

[/center](2012-09-18 12:05)

[h1]IPv6 升級創意甘苦談「多媒體創作比賽」(總七萬)[/h1]


報名網址:
http://ipv6launch.tw/ishow/info.html
http://ipv6launch.tw/ishow/join.html

一、活動目的

為提昇各界人士參與IPv6網路升級興趣,並鼓勵社會大眾使用IPv6網路,特別規劃IPv6網路為主題之多媒體創作比賽活動。歡迎各界人士投稿參加比賽,透過多媒體或製作影片分享獨具的創意和想法。
二、指導單位

交通部、網際網路通訊協定升級推動辦公室。
三、主辦單位

財團法人台灣網路資訊中心、新一代網際網路互通認證計畫辦公室。
四、參加對象

不限,唯須以繁體中文進行創作。
五、收件及截稿時間(暫定)

自2012年9月10日(一)至2012年11月16日(五)凌晨零點截止(台灣時間),以伺服器上傳時間為憑,逾期恕不受理。
六、作品主題

以「升級創意與甘苦談」為創作方向,參賽者須以此概念構思發想,除分享處理IPv6網路升級的網路設定作業方式,也可以分享寶貴的成功或失敗經驗,以及有趣的點點滴滴,或針對IPv6網路發表有趣的應用服務發想,也歡迎提出新的概念來談IPv4網址枯竭,進而提供推廣IPv6的創意作法。
七、作品形式

作品採透過gmail帳號登錄上傳到Youtube網站上,影片長度不得超過10分鐘,呈現方式不拘,可為拍攝、動畫、自動簡報或其他各種多媒體方式,內容可包含影片、照片、圖片、電腦繪圖、文字、聲音、音樂等,以增進作品之多元及豐富,但不得使用未經授權之素材或資源。
註:YouTube影片範例如後可茲參考:
(1) IPv6 - Are You Ready? http://www.youtube.com/watch?v=eYffYT2y-Iw&feature=related
(2) IPv6讓網絡持續 http://www.youtube.com/watch?v=v_TXjXcZ-zc
(3) Deploying IPv6 http://www.youtube.com/watch?v=-oQ4JYBjhVc&feature=related
八、投稿規定及方式

1.同一作者以一個參賽作品為限,重複投稿者將失去參賽資格。
2.參賽投稿作品必須保證為原創,且未曾對外公開發表,如有違反除喪失參賽資格外,將永不得參加TWNIC所舉辦之其他比賽。
3.投稿參賽內容如與主題無關,將不列入評審。
4.作品必須上傳到Youtube網站,畫面解析度至少為800*600像素,並於本中心投稿網站完成報名。報名時請提供作品位於Youtube之連結位址,並請註明作者姓名、聯絡方式(email、電話)、地址,以便後續聯絡。投稿網站:(隨後公布)。
5.得獎作品須同意其作品提供本中心使用於公益性IPv6推廣活動,本中心將標示原作者。
九、獎項及獎金 (報名踴躍將酌增獎項數量)

1.第一名:獎金新台幣20,000元及獎座(一名)
2.第二名:獎金新台幣15,000元及獎座(一名)
3.第三名:獎金新台幣10,000元及獎座(一名)
4.佳 作:獎金新台幣5,000元及獎座(五名)
十、揭曉及頒獎

1.預計2012年12月中旬將於財團法人台灣網路資訊中心及活動網站公告得名名單,並舉辦頒獎典禮。
2.投稿作品無論錄取與否均不退件,請投稿者自留檔案。
3.得獎者將個別通知,並於本活動網站公告之;未得獎者將不另外通知。
4.依據中華民國稅法規定,獲獎獎金NT$20,000元(含)以上者,主辦單位依法代扣得獎者10%所得稅,外藉人士依法代扣稅率為
20%。
5.投稿作品應為原始創作,不得侵害他人權利或違法之內容,如侵害他人或違法除得以取消獲獎資格、追回獎金及獎座外,一切
法律責任概由投稿者自行負責,並應賠償主辦單位之損失。
6.投稿者應保證所有填寫或提出之資料均為真實且正確,且未冒用或盜用任何第三人之資料。如有不實或不正確之情事,TWNIC
得取消參加或得獎資格。如因此致TWNIC無法通知其得獎訊息時,TWNIC不負任何法律責任,且如有致損害於TWNIC或其他
任何第三人,投稿者應負一切相關責任。
7.凡報名投稿者,即視同認可本報名的各項內容及規定,本活動參賽規則如有異動,依本活動網站最新消息公布為準。主辦單位
保有所有相關活動最終解釋權與活動更改之權利。
8.其他未盡事宜,悉依主辦單位相關規定。(2012-09-17 01:23)

[h1]好用的文字模式(text-mode) YAFC FTP Client[/h1]

http://yafc.sourceforge.net/

yafc === Yet Another FTP Client (Command Like bash/csh)

Examples:

FTP Count files:
代碼:

ls -al | wc
ls -al [1-9]* | wc


FTP Recursive Removal/Deletion:
代碼:

rm -rf *
rm -rf *.tmp



安裝方式:

Fedora/Redhat: sudo yum install yafc

Ubuntu/Debian: sudo apt-get install yafc
(2012-09-14 15:05)

[h1]科學家在剛果發現「新品種猴子/猿猴」[/h1]


28 年來第一次新發現的品種,某個角度長得超像人類。

論文原文: http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0044271

CNN 報導: http://edition.cnn.com/2012/09/12/world/africa/dr-congo-new-monkey/index.html?hpt=hp_c4

CNN 部落格比較: http://news.blogs.cnn.com/2012/09/12/whos-the-monkey/

外國網友: 「長得像我的鄰居 Joe」

(2012-09-13 13:04)

引言回覆:
結果什麼約都沒有簽就結束了


引言回覆:
至今還沒簽合約也未給訂金


通常以上這兩行狀況,不能讓其發生。

不過老闆都不在乎了,你喊聲可能也沒用?(2012-09-12 11:20)

[h1]1024 files Limitation Not in ToS, but in FAQ?[/h1](2012-09-11 20:11)

[h1]Not use GoDaddy Linux Hosting (1024 files/folder Limit)[/h1]


(1) You __can't__ find such limitation within "Term of Service".
=> https://www.godaddy.com/agreements/ShowDoc.aspx?pageid=HOSTING_SA

(2) They will block you access(403 Forbidden) silently without any notification in advance.

(3) Zero support from Godaddy, futile tickets issued, then got a SUSPEND-ACCOUNT warning two weeks later.

(4) That is: Not mentioned in ToS --> Disallow after you renew --> Warn you weeks later.


代碼:

Your shared hosting account currently has an improperly configured directory structure. More specifically, the following directories have exceeded the maximum 1,024 file/folder count:




can't find such limitation in ToS

代碼:

Storage and Plan Limits

All web hosting plans, including plans that offer unlimited disk space, are subject to a limit of no more than 500,000 inodes per account (for Linux® hosting accounts) or 500,000 files and folders per account (for Windows® hosting accounts).  Any account that exceeds this limit will be issued a network violation warning and subject to suspension if no action is taken by the customer to reduce the number of inodes or files and folders (as the case may be).

All web hosting plans, including plans that offer unlimited databases, are subject to limits of (i) no more than 1,000 tables per database and (ii) no more than one gigabyte (“GB”) of storage per database.  Any database that exceeds these limits will be issued a network violation warning and subject to suspension if no action is taken by the customer to reduce the number of tables or gigabytes (as the case may be).
(2012-09-11 13:37)

[h1]用大型觸控螢幕玩星海天梯(SC2) by Stephano[/h1]



網友的評論:
1. 網友: APM = 10
2. 網友: 我猜就算用觸控螢幕,照樣也可以痛電我。
MLG 完整影片:
http://tv.majorleaguegaming.com/playlists/140-stephano-apollo-and-clutch-ladder-on-the-touchscreen

https://www.youtube.com/watch?v=aoNMWORzPys
[影片/動畫]



(2012-09-11 13:06)

mantisdinghong 寫到:
东南亚国家消费不高,大马稍微高一点,我还觉得超出预算了,本来想全部在1万人民币内完成呢。。。。


看到路線圖更新,整個東南亞都走過一次
撇除辟穀神功的問題,93 天的旅行也真是很強阿(2012-09-11 11:37)

太猛了吧!

13084 - 950 - 3240 - 1966 = 6928 RMB

6928 / 93 days = 74.5 RMB (一天約 350 台幣)

請問一下你們有練「辟穀神功」之類的道家仙術嗎?(2012-09-10 18:12)

找到一個英文的 Painter 10 Uninstall 說明
看起來沒有所謂的 uninstall 程式
而是要「自己刪除目錄 + 使用者設定」

使用時請小心

http://www.ehow.com/info_12182561_corel-painter-x-uninstall.html

引言回覆:

For Mac OS X,
drag and drop the Corel Painter X application folder into the "Trash" icon.
Click "Home" to find your "User" folder menu. Access the "Library" menu to find an "Application Support" folder.
Find the "Corel" folder and drag and drop it to the "Trash" icon. Look for the "Preferences" folder in that same "Library" menu.
Drag and drop the "com.corel.PainterX.plist" file to the "Trash" icon.
Open the "Finder" menu and complete the installation by selecting "Empty Trash."
(2012-09-08 10:17)

1. Mac OS X 版本 10.X?

2. Core Painter 版本?(2012-09-07 12:15)

[center]paper folding art[/center]
##DIV##
[center]
[h1]Paper Folding Art/Flowers -摺紙藝術、紙藝術花球 by 三月[/h1]
DSC03219 紙色戀曲原創摺紙作品「雪中情」
DSC05555 紙色戀曲原創摺紙作品「琉璃夢」
DSC05532 紙色戀曲原創摺紙作品「安靜」
DSC03299 紙色戀曲原創摺紙作品「煙雨江南」
DSC03105 紙色戀曲原創摺紙作品「牽系」
DSC05493 紙色戀曲原創摺紙作品「純簡」
DSC03966 紙色戀曲原創摺紙作品「塵香」
[hr]
More! 123123123's (三月) Artworks:
http://vovo2000.com/designart/art/123123123/
http://vovo2000.com/artist/123123123/
[hr]
See Also:

[url=http://vovo2000.com/tags/袖珍/]
「袖珍」創作 :: "Miniature Art/Modeling"

[/url]

[url=http://vovo2000.com/tags/紙娃娃/]
「紙娃娃」相關創作 :: "Paper Doll" Artworks Creation
[/url]

[url=http://vovo2000.com/tags/花/]
「花」相關創作 :: "Flowers" Creation Painting
[/url]

[/center](2012-09-07 01:50)

前往頁面 ←上一頁  1 ... 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 ... 558  下一頁→