Linux下的blog writer — bilobo測試

來源:互聯網
上載者:User
bilbo 測試成功,Linux總算有辦法可以發點東西了!!!

原來在Linux下是通過FireFox發的,但是CSDN對Firefox的支援有問題,線上編輯會丟失格式,更嚴重的是FireFox提交的文章只能用FireFox才能看到,害得當時我一批文章全部重新發表了一次,不知道現在好了沒有,總之我是沒有再敢用FireFox發表文章了。

最近總算在KDE下找到了blog writer了!

bilbo雖然不算太好用,分類取不會來,最近文章取不回來,不能設定文章發表的分類,還有如下代碼不好貼的問題。。。。。。但是起碼,當我想突然看到某個東西想轉載的時候,不用再切換到Windows下了。

bilbo是KDE下的離線部落格寫作工具,首頁是:http://bilbo.gnufolks.org/

ubuntu可以在這裡下載:https://launchpad.net/~neversfelde/+archive/ppa/+packages

貼代碼測試:

#include <GL/glut.h>

#include <stdlib.h>

void display(void)

{

/* clear all pixels */

glClear (GL_COLOR_BUFFER_BIT);

/* draw white polygon (rectangle) with corners at

* (0.25, 0.25, 0.0) and (0.75, 0.75, 0.0)

*/

glColor3f (1.0, 1.0, 1.0);

glBegin(GL_POLYGON);

glVertex3f (0.25, 0.25, 0.0);

glVertex3f (0.75, 0.25, 0.0);

glVertex3f (0.75, 0.75, 0.0);

glVertex3f (0.25, 0.75, 0.0);

glEnd();

/* don't wait!

* start processing buffered OpenGL routines

*/

glFlush ();

}

void init (void)

{

/* select clearing color */

glClearColor (0.0, 0.0, 0.0, 0.0);

/* initialize viewing values */

glMatrixMode(GL_PROJECTION);

glLoadIdentity();

glOrtho(0.0, 1.0, 0.0, 1.0, -1.0, 1.0);

}

測試結果:格式丟失,顏色丟失,使用bilobo的代碼標記工程無效。


試著貼個圖

格式測試成功,大小正常,不會像Word2007一樣亂掉。

測試結果:完全成功。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.