在Linux中用Google的工具条吧

博客提及了Mozdev上其他与搜索相关的项目。
部署运行你感兴趣的模型镜像
http://asktom.oracle.com 上看到了Tom居然也推荐Firefox浏览器. 于是乎到Mozilla (http://www.mozilla.com) 的站点下载了一个,在我的Linux上安装用了一下.感觉这个浏览器真是短小精悍.很多地方都可圈可点.不过不支持Shockwave的插件.说到插件, 可以到 http://googlebar.mozdev.org/index.html 这个地方下载一个Google的工具条.你还别说,还真和 Windows下的功能相近.看来Google的拥趸者众阿.

这个小东西在WIndows上也可以用的.美中不足的是目前Linux下的Google条UI还不够漂亮.

Googlebar的站点上还发现了如下信息:

Other search-related projects on Mozdev

BioBar-Searh all important biological databases, including Scientific Literature, Genome, and more.
Companion- Emulates the Yahoo! Companion toolbar in mozilla.
Easysearch- Offers a search tolbar with more general coverage of many search engines.
ExPASybar- Searches the ExPASy database of biomolecules. Chemists of the world, unite!
Mycroft- Collection of search plugins for mozilla's sidebar search (formerly known as Sherlock)
Gimli- Another project to re- create popular toolbars, starting with a dictionary.
NeedleSearch- Allows users to search using search engines installed in mozilla, or add a new search string to the toolbar automatically.
Pubmed- Searches the NLM-medline database of articles and citations in the field of medicine.
Qlookup- Add google search to context menu


您可能感兴趣的与本文相关的镜像

Stable-Diffusion-3.5

Stable-Diffusion-3.5

图片生成
Stable-Diffusion

Stable Diffusion 3.5 (SD 3.5) 是由 Stability AI 推出的新一代文本到图像生成模型,相比 3.0 版本,它提升了图像质量、运行速度和硬件效率

Linux系统中使用C语言进行开发,可按以下方面操作: ### 开发环境搭建 在Linux环境下使用的C库是GNU C,需确保系统安装了必要的开发工具,如GCC编译器等。以常见的Ubuntu系统为例,可通过以下命令安装: ```bash sudo apt-get update sudo apt-get install build-essential ``` ### 编写C语言代码 使用文本编辑器(如vim、nano等)编写C语言代码。以下是一个简单的示例,创建一个名为`test.c`的文件: ```c #include <stdio.h> int main() { printf("Hello, Linux C Development!\n"); return 0; } ``` ### 编译代码 C语言代码编译分为预处理、编译、汇编和链接4个步骤[^3]。使用GCC编译器编译上述代码: ```bash gcc test.c -o test ``` 在编译过程中,GCC会自动处理头文件和宏定义(预处理),将源文件转换为汇编语言(编译),把汇编语言转换为目标文件(汇编),最后将目标文件链接成可执行文件(链接)。在Linux系统中,GCC命令会自动删除`.o`文件,且Linux靠文件是否有可执行属性来区分文件是否可执行,而不是后缀名,这里指定的`test`就是可执行文件本身[^3][^4]。 ### 运行程序 编译成功后,可在终端中运行生成的可执行文件: ```bash ./test ``` ### 文件操作 在C语言中,可使用系统调用函数进行底层文件操作,如`open`、`write`和`read`函数,它们是UNIX和类UNIX系统(如Linux)中的标准接口,不同于C标准库中的文件操作函数(如`fopen`、`fwrite`和`fread`)[^2]。以下是一个简单的文件读写示例: ```c #include <stdio.h> #include <fcntl.h> #include <unistd.h> int main() { int fd; char buffer[] = "Hello, File!"; // 打开文件 fd = open("test.txt", O_WRONLY | O_CREAT, 0644); if (fd == -1) { perror("open"); return 1; } // 写入数据 write(fd, buffer, sizeof(buffer)); close(fd); // 读取文件 fd = open("test.txt", O_RDONLY); if (fd == -1) { perror("open"); return 1; } char read_buffer[100]; ssize_t bytes_read = read(fd, read_buffer, sizeof(read_buffer)); if (bytes_read == -1) { perror("read"); return 1; } read_buffer[bytes_read] = '\0'; printf("Read from file: %s\n", read_buffer); close(fd); return 0; } ```
评论 3
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值