由买买提看人间百态

topics

全部话题 - 话题: gnu
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
P********e
发帖数: 2610
1
恩啊
除非业余玩玩
其他人,少碰open source
珍惜生命,远离open source
g*****g
发帖数: 34805
2
open source挺好的,啥apache, MIT license的都很好用。
Java里面大量使。
n******t
发帖数: 4406
3
GSL没有什么用吧。
而且质量也不高,一般用用算个结果还是很方便的,也就不在乎gpl了。
c*****t
发帖数: 1879
4
现在的一个 trend 就是用 GPL / commercial dual licensing 。这跟 GPL
原来的初衷似乎有些背道而驰。
g*****g
发帖数: 34805
5
Java的控件?我们client端的东西倒是做得不多,有一个基于SWT/Eclipse RCP
那一套的,不要紧。Server端的东西绝大部分都是apache或者LGPL license的,
没啥问题。
f******y
发帖数: 2971
6
不算背道而驰,GPL是要求开源而已,跟免费不免费没关系。
w***g
发帖数: 5958
7
不是所有的人都愿意开源的。
s*****k
发帖数: 604
8
矩阵运算和 fft 用 MKL 或者 ACML
一直没搞清楚netlib上的东西是什么用license
n********e
发帖数: 30
9
来自主题: Programming版 - 相似网站搜索
最近建了相似网站搜索的网站: www.lovelygrape.com 欢迎大家尝试并提出宝贵意见
。下面是几个搜索例子:
lovelygrape.com/search.php?URL=www.mathworks.com (similar sites to mathworks)
lovelygrape.com/search.php?URL=www.gnu.org (similar sites to gnu)
lovelygrape.com/search.php?URL=www.nature.com/nature/index.html (和nature
magazine相似的网站)
lovelygrape.com/search.php?URL=http://www.informatik.uni-trier.de/~ley/db/index.html (和 DBLP Bibliography 相似的网站)
lovelygrape.com/search.php?URL=immigration (移民网站,order by popularity
and term frequency,maybe
t****t
发帖数: 6806
i*****f
发帖数: 578
11
来自主题: Programming版 - 关于signal handler
【 以下文字转载自 Linux 讨论区 】
发信人: icewolf (好好活), 信区: Linux
标 题: 关于signal handler
发信站: BBS 未名空间站 (Mon Dec 21 18:22:17 2009, 美东)
最近在看gnu libc的manual,里面讲到signal handler的时候有这个例子(chapter 24
.4.2, http://www.gnu.org/software/libc/manual/html_node/Termination-in-Handler.html#Termination-in-Handler):
1 volatile sig_atomic_t fatal_error_in_progress = 0;
2
3 void
4 fatal_error_signal (int sig)
5 {
6 /* Since this handler is established for more than one kind of signal,
7 it might still get invoked recurs
g*********s
发帖数: 1782
12
来自主题: Programming版 - how to statically initialze a mutex in class?
the following code gives me warnings. what does it mean and does it matter?
inclass_mutex.cpp: In constructor ‘X::X(unsigned int)’:
inclass_mutex.cpp:8: warning: extended initializer lists only available with
-std=c++0x or -std=gnu++0x
inclass_mutex.cpp:8: warning: extended initializer lists only available with
-std=c++0x or -std=gnu++0x
#include
class X {
public:
X(unsigned int in_sz = 0): sz (in_sz)
{
buffer = new int[sz];
lock = PTHREAD_MUTEX_INITIALIZER;
... 阅读全帖
X****r
发帖数: 3557
z********0
发帖数: 9013
14
来自主题: Programming版 - 问问g++, gcc, cc之间的关系
normally, cc is gcc
gcc uses C frontend
g++ uses C++ frontend
gcc -c -S a.c -v 2>&1 |grep cc1
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.1/cc1 -quiet -v a.c -quiet -
dumpbase a.c -mtune=generic -march=x86-64 -auxbase a -version -o a.s
g++ -c -S a.c -v 2>&1 |grep cc1
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.1/cc1plus -quiet -v -D_GNU_SOURCE
a.c -quiet -dumpbase a.c -mtune=generic -march=x86-64 -auxbase a -version -
o a.s
d***a
发帖数: 13752
S*******s
发帖数: 13043
16
来自主题: Programming版 - 最近谁编译过gcc?
http://gcc.gnu.org/install/
https://www.gnu.org/software/gcc/svn.html
上说的。没想到那么大
应该用什么?
S*A
发帖数: 7142
17
来自主题: Programming版 - 随手写的C程序,请指教
GCC 结果优化掉了 p2, 连那个 malloc 也扔掉了。
p1 因为有 strcpy 没有被优化掉。
volatile 为什么加到 P3 上, p3 都没有被 assign.
.file "a.c"
.section .text.startup,"ax",@progbits
.p2align 4,,15
.globl main
.type main, @function
main:
.LFB22:
.cfi_startproc
subq $24, %rsp
.cfi_def_cfa_offset 32
movl $10, %edi
movl $6513249, (%rsp)
call malloc
movl $13877, %edx
movl $875770417, (%rax)
movb $0... 阅读全帖
S*A
发帖数: 7142
18
来自主题: Programming版 - C一个问题搞不懂
你这个理解不对。只有一次 dereference。
二维的下标只是用来计算转换的连续一维数组(内存)的 offset。
下标的 offset 计算本身不是 dereference.
我给你这个示范程序,注意看这里面的 array assign.
只用了一个 dereference。
======================
int a[5][6];
void foo(void)
{
a[1][2] = 1;
**a = 2;
}
======================
$ gcc -S -O2 multi.c
.file "multi.c"
.text
.p2align 4,,15
.globl foo
.type foo, @function
foo:
.LFB0:
.cfi_startproc
movl $1, a+32(%rip) // 这里是 a[1][2] = 1
movl $2, a(... 阅读全帖
l****c
发帖数: 838
19
来自主题: Programming版 - 程序员有啥核心竞争力
You need to look at things at system level.
Most software are implemented by many people.
GM and Ford make cars, but they do not make every part.
They have their suppliers.
One supplier makes brake, one supplier makes engine...
then GM put them together as a car.
Boing makes planes, but it does not make engine, GE does.
They same thing in software, some programmers write this module,
other programmers write another module, put them together it is a software.
Linus wrote the Linux kernel, but no... 阅读全帖
x****k
发帖数: 2932
20
如何编写无法维护的代码
让自己稳拿铁饭碗 ;-)
– Roedy Green(翻译版略有删节)
简介
永远不要(把自己遇到的问题)归因于(他人的)恶意,这恰恰说明了(你自己的)无
能。 — 拿破仑
为了造福大众,在Java编程领域创造就业机会,兄弟我在此传授大师们的秘籍。这些大
师写的代码极其难以维护,后继者就是想对它做最简单的修改都需要花上数年时间。而
且,如果你能对照秘籍潜心修炼,你甚至可以给自己弄个铁饭碗,因为除了你之外,没
人能维护你写的代码。再而且,如果你能练就秘籍中的全部招式,那么连你自己都无法
维护你的代码了!
(伯乐在线配图)
你不想练功过度走火入魔吧。那就不要让你的代码一眼看去就完全无法维护,只要它实
质上是那样就行了。否则,你的代码就有被重写或重构的风险!
总体原则
Quidquid latine dictum sit, altum sonatur.
(随便用拉丁文写点啥都会显得高大上。)
想挫败维护代码的程序员,你必须先明白他的思维方式。他接手了你的庞大程序,没有
时间把它全部读一遍,更别说理解它了。他无非是想快速找到修改代码的位置、改代码
、编译,然后就能交差,... 阅读全帖
d********g
发帖数: 10550
21
来自主题: Programming版 - 被苹果给惊呆了!! (转载)
Clang/LLVM才是趋势吧。本来BSD系的就不怎么鸟GNU/Linux,FreeBSD不久前也全线抛
弃GCC了
OS X:
$ g++ --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx
-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 7.0.0 (clang-700.1.76)
Target: x86_64-apple-darwin15.0.0
Thread model: posix
FreeBSD:
$ clang --version
FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512
Target: x86_64-unknown-freebsd10.2
Thread model: posix
GPL不是啥灵丹妙药,open source也并非GNU的天下
k***0
发帖数: 1381
22
来自主题: Programming版 - 被苹果给惊呆了!! (转载)
井底之蛙,c++这块gnu算个鸟蛋行标,鬼才follow gnu呢
d********g
发帖数: 10550
23
来自主题: Programming版 - 被苹果给惊呆了!! (转载)
Clang/LLVM才是趋势吧。本来BSD系的就不怎么鸟GNU/Linux,FreeBSD不久前也全线抛
弃GCC了
OS X:
$ g++ --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx
-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 7.0.0 (clang-700.1.76)
Target: x86_64-apple-darwin15.0.0
Thread model: posix
FreeBSD:
$ clang --version
FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512
Target: x86_64-unknown-freebsd10.2
Thread model: posix
GPL不是啥灵丹妙药,open source也并非GNU的天下
k***0
发帖数: 1381
24
来自主题: Programming版 - 被苹果给惊呆了!! (转载)
井底之蛙,c++这块gnu算个鸟蛋行标,鬼才follow gnu呢
w********m
发帖数: 1137
25
来自主题: Programming版 - ubuntu on windows
不是有GNU吗。
windows上装个linux,需要开源吧。
GNU可以找windows麻烦吧?
M******r
发帖数: 120
26
公司明确要求不用GNU GPL的库,
我去查了一下发现License是个大坑
我码了这么多年还不知道有这么个事情。
请问哪些常用库是GNU GPL的,好注意一下。
m*p
发帖数: 212
27
远望资讯?《新潮电子》99年第九期
下个世纪,PhotoShop的最强挑战者 ——Linux下的GIMP
前些天,看到一则新闻,说的是声名显赫的Adobe公司将在中
国逐步打击盗版市场。据称,他们深知在中国PhotoShop的使用者数量巨
大,而其中有相当一部份使用的不是正版的PhotoShop,所以Adobe
公司对打击盗版使用者充满了信心。我看了这则新闻以后,心中一惊,
大事不好!据我所知,对于大部分图形艺术工作者来说,除了PhotoShop,
的确很难得找到一种可以和PhotoShop媲美的专业图形制作软
件。他们的工作几乎完全依赖于PhotoShop,根本无法放弃功能
这样强大的图形软件,如果因为版权问题而被Adobe公司起诉的话,那后果
将不堪设想……
怎么办,我们难道就没有其它的选择余地了吗?当然有,我
们有其他更好的选择!
请跟随我们加入自由软件的阵营吧,GIMP就是你所期望的自由软件!
GIMP就是The GNU Image Manipulation Program(GNU图像处理程
序)的简称,它是一个用来进行照片处理、图像合成、图形编辑的自
由软件。由于GIMP完全
w*****g
发帖数: 198
28
来自主题: Unix版 - ?
GNU is freee software
UNIX is not free software, so GNU's not UNIX....?? :P
q*****m
发帖数: 73
29
来自主题: Unix版 - How to creat .tar.gz?
he has gzip, and I assume he has gnu tar.
(assume you know gzip is gnu zip)
p****s
发帖数: 3184
30

Better learn GNU's "autoconf" to resolve incompatibilites among UNIX
variants. The "configure" utilities come with most GNU software
is produced by "autoconf".
i****d
发帖数: 7
31
来自主题: Unix版 - A question about GCC
g++ package:
Description :
This package adds C++ support to the GNU C compiler. It includes
support for most of the current C++ specification, including templates
and exception handling. It does include the static standard C++
library and C++ header files; the library for dynamically linking
programs is available separately.
gcc package:
Description :
The egcs package contains the GNU Compiler Collection: cc, gcc and
egcs. You'll need this package in order to compile C/C++ code.
g*k
发帖数: 194
32
偶在编译程序时遇到了问题,
系统好象不明白执行条件编译的语句:
70: ifeq "$(SYSTEM_NAME)" ""
71: SYSTEM_NAME = Solaris
72: endif
在IRIX上系统报告说,“71:must be a seperator (: or ::) for
rules"
在solaris上系统说,"Fatal error in reader: makefile, line
71: Unexpected end of line seen"
这一部分只是定义一些 local variable,并没有真正去编译。
我的问题是gnu的make是否不能识别 ifeq 语句?
我查了在线帮助,好象没提条件编译的事。而gnu的make手册
说明这样的调用是正确的。请大虾赐教
T***B
发帖数: 137
33
来自主题: Unix版 - A question about command time
Thanks, ottoz.
There is a -o option in the man time file. But it doesn't work in my
environment (bad command). It seems that -o is a GNU option. Is this the cause
of the problem? Is that a way to handle it?
GNU OPTIONS
-f FORMAT, --format=FORMAT
Specify output format, possibly overriding the for-
mat specified in the environment variable TIME.
-p, --portability
Use the portable output format.
-o FILE, --output=FILE
Do
o***z
发帖数: 133
34
来自主题: Unix版 - 读过这种BT文件么?
try GNU tar
By default, GNU `tar' drops a leading `/' on input or output
q*****m
发帖数: 73
35
try to untar it using gnu tar (usually on a Linux machine).
quote:
"For example, if the archive contained a file `/usr/bin/computoy',
GNU tar would extract the file to `usr/bin/computoy', relative
to the current directory. "
s********u
发帖数: 31
36
来自主题: Unix版 - 大家都是用什么机子装UNIX?
Linux = Linux Is Not a UniX and GNU = GNU is Not a Unix
hoho
D**e
发帖数: 10169
37
gcc是个C compiler, g++是C++ compiler.
它们偏偏又都是GCC的一部分. 鬼知道GNU
怎么把名字搞得这么乱.
GCC这么大写, 是GNU COMPILER COLLECTION
的缩写. 小写, gcc, 呢就是C compiler.
TMD, 这帮人真TMD.
T********r
发帖数: 6210
38
来自主题: Unix版 - GCC 一问
GNU的当然不好了, 免费, 没听说过便宜没好货吗? 有钱人当然会花大把的银子去买
SUN的好东东了, 只有我们这样没钱的抱着GNU的东东当个宝...
u*****n
发帖数: 160
39
来自主题: Unix版 - how to use 'ls' to show color
You need a so-called "gnu ls" to show color when "ls", which usually you have
to install by yourself. Here is a link for your ref:
http://www.gnu.org/software/coreutils/
w****g
发帖数: 597
40
来自主题: Windows版 - 马的,国内的网站病毒太多了
7zip就很好。不需要winrar。
http://www.7-zip.org/
7-Zip is open source software. Most of the source code is under the GNU LGPL
license. The unRAR code is under a mixed license: GNU LGPL + unRAR
restrictions. Check license information here: 7-Zip license.
You can use 7-Zip on any computer, including a computer in a commercial
organization. You don't need to register or pay for 7-Zip. But you can make
a donation to support further development of 7-Zip.
The main features of 7-Zip
* High compression rati
D********g
发帖数: 533
41
来自主题: ChemEng版 - 请教有关fortran
Free compiler:
1. GNU gFortran http://gcc.gnu.org/fortran/
If you have computer facilities in your dept, they should be there. just g77
to invoke that.
2. Intel Fortran Compiler: http://www.intel.com/cd/software/products/asmo-na/eng/282048.htm
Free for non-comercial Use.
Good for Win.
3. Compaq Visual FORTRAN
Like Visual Studio, but it's not free. And not recommend to use.

code
a***u
发帖数: 72
42
来自主题: Computation版 - numerical recipe c++
GNU Scientific Library
http://www.gnu.org/software/gsl/
Stable, interface for C

computations.
solve
fortran
s******t
发帖数: 20
43
它可不可以windows下面用,有没有什么C的编译器可以用?
thanks a lot. THe following is what I copied from GSL website.


GSL is developed on the following platforms,
GNU/Linux and GNU/Hurd with gcc
It has been reported to compile on the fol
k*******d
发帖数: 1340
44
USRP2支持MIMO
用GNU Radio可以,可以是可以,不过可能会比较麻烦,需要对C++,Python以及GNU
Toolchain掌握得很熟练
所有的开发都可以在软件层面进行,基本不要管FPGA&DSP
一个USRP2现在是1400刀
有公司正在开发更简单的软件系统,由于Ettus被NI收购了,据说未来可能会使用
LabView,
Mathworks正在开发Simulink和USRP2的接口
k*******d
发帖数: 1340
45
GNU Radio是软件,可以和USRP/USRP2一起使用,目前据我说知它也只支持USRP/USRP2
USRP和Simulink的接口网上也有,是一所学校的人开发的,不是MathWorks开发的
USRP2和Simulink的接口是由MathWorks开发的
GNU Radio和Matlab没有相连不相连的问题吧,它们都是软件,一个系统一般只用其中
一个,没听说
过两个连起来用的,虽然理论上去写一些接口程序可能也可以把它们连起来
z*****n
发帖数: 447
46
en, 我了解了一下,GNU Radio完全支持与Matlab和信号发生器连接,不过需要写一些
Driver;另外UFL有个Group的一篇文章里面,用GNU Radio做JPEG文件传输,没用USRP
,而是用Socket写了个程序模拟USRP连接,看来不用USRP也可以,不过比较麻烦。

USRP2
f***1
发帖数: 168
47
来自主题: Statistics版 - 请教一个R上安装hadoop/Rhipe的问题
Purdue有个指引:
https://www.datadr.org/install.html
我安装到最后一步就不行了。显示:
** R
** inst
** preparing package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded
**Error : .onLoad failed in loadNamespace() for 'Rhipe', details:
call: dyn.load(file, DLLpath = DLLpath, ...)
error: unable to load shared object '/home/cluster1/R/x86_64-unknown-linux-
gnu-library/2.15/Rhipe/libs/Rhipe.so':
libprotobuf.so.7: cannot open shared object file... 阅读全帖
m****s
发帖数: 18160
48
来自主题: board版 - [合集] 申请Law版班主
☆─────────────────────────────────────☆
gdb (gnu debug) 于 (Sun Dec 19 19:34:44 2010, 美东) 提到:
是否已阅读:1)《站规》2)《版务操作简易手册》?:

[申请ID]:
gdb
[申请版面]:
Law
[申请职务]:
版主
[版务经验]:
熟悉telnet各种操作,版物操作熟练。
[申请纲领]:
和谐为主,学术带头。
[版规草案]:
对人身攻击的封禁7-14天。鼓励各种观点。鼓励学术探讨。
☆─────────────────────────────────────☆
EUV (奶特都是卖国贼) 于 (Sun Dec 19 19:52:19 2010, 美东) 提到:
SPT

☆─────────────────────────────────────☆
viamedia (Mens conscia recti) 于 (Sun Dec 19 20:01:24 2010, 美东) 提到:
请问你对本站钻大于法的现象怎么看?
☆─────────────────────... 阅读全帖
f**d
发帖数: 768
49
来自主题: Neuroscience版 - eBook: From computer to brain
这是一本计算神经科学的优秀著作,全文拷贝这里(图和公式缺),有兴趣的同学可以
阅读
如需要,我可以分享PDF文件(--仅供个人学习,无商业用途)
From Computer to Brain
William W. Lytton
From Computer to Brain
Foundations of Computational Neuroscience
Springer
William W. Lytton, M.D.
Associate Professor, State University of New York, Downstato, Brooklyn, NY
Visiting Associate Professor, University of Wisconsin, Madison
Visiting Associate Professor, Polytechnic University, Brooklyn, NY
Staff Neurologist., Kings County Hospital, Brooklyn, NY
In From Computer to Brain: ... 阅读全帖
z*******3
发帖数: 13709
50
来自主题: DataSciences版 - Data Scientist的编程能力
c++哪有什么版权
c#除了m$其他没有像样的it公司用,所以没啥好claim的
不过也不是没有,unity最近就被搞了一把
mono这个东西跟microsoft的关系有问题,wikipedia上写得挺好
The Free Software Foundation's Richard Stallman has stated in 2009-06-25
that "[...]we should discourage people from writing programs in C#.
Therefore, we should not include C# implementations in the default
installation of GNU/Linux distributions or in their principal ways of
installing GNOME".[85] In 2009-07-16, Brett Smith (also from the FSF) stated
that "Microsoft's patents are much more da... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)